数组与字符串:基本字符串压缩
Posted wanggm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组与字符串:基本字符串压缩相关的知识,希望对你有一定的参考价值。
题目描述
利用字符重复出现的次数,编写一个方法,实现基本的字符串压缩功能。比如,字符串“aabcccccaaa”经压缩会变成“a2b1c5a3”。若压缩后的字符串没有变短,则返回原先的字符串。
给定一个string iniString为待压缩的串(长度小于等于10000),保证串内字符均由大小写英文字母组成,返回一个string,为所求的压缩后或未变化的串。
测试样例
"aabcccccaaa"
返回:"a2b1c5a3"
"welcometonowcoderrrrr"
返回:"welcometonowcoderrrrr"
import java.util.*; public class Zipper { public String zipString(String iniString) { // write code here StringBuffer sb = new StringBuffer(); for (int i = 0, j; i < iniString.length(); i = j) { char c = iniString.charAt(i); int count = 1; for (j = i + 1; j < iniString.length() && iniString.charAt(j) == iniString.charAt(i); j++) { // 利用&&短路解决异常ArrayIndexOutOfBoundsException count++; } sb.append(iniString.charAt(i)); sb.append(count); } return iniString.length() > sb.length() ? sb.toString() : iniString; } }
以上是关于数组与字符串:基本字符串压缩的主要内容,如果未能解决你的问题,请参考以下文章