原文
Implement a method to perform basic string compression using the counts of repeated characters. For example, the string aabcccccaaa would become
a2blc5a3. If the "compressed" string would not become smaller than the original string, your method should return the original string.
译文
利用计算字符个数的方式实现一种基本的字符串压缩函数。例如字符串"aabcccccaaa"将变成"a2blc5a3"。如果经过压缩的字符串不比原来的字符串短的话,应该返回原字符串。
解答
没什么好说的,直接模拟题目的要求就行了。
public class Main { public static String compression (String str) { StringBuilder sb = new StringBuilder(); int ct, pt = 0; int len = str.length(); while(pt < len) { char ch = str.charAt(pt); ct = 1; for(int i = pt + 1 ; i < len; i++) { if(str.charAt(i) == ch) ct++; else break; } sb.append(ch).append(ct); pt += ct; } String res = sb.toString(); if(res.length() < len) return res; else return str; } public static void main(String args[]) { String s1 = "aabcccccaaa"; String s2 = "aab"; System.out.println(compression(s1)); System.out.println(compression(s2)); } }
本文介绍了一种基于字符重复计数的基本字符串压缩方法,并提供了一个Java实现示例。该方法通过统计字符串中连续相同字符的数量来进行压缩,若压缩后的字符串长度大于等于原字符串,则返回原字符串。
6388

被折叠的 条评论
为什么被折叠?



