统计字符 比如aaabbcca----3a2b1c1a
Posted 鹏鹏进阶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了统计字符 比如aaabbcca----3a2b1c1a相关的知识,希望对你有一定的参考价值。
package Demo; import java.util.Scanner; /** * Created by chengpeng on 16/11/3. */ /* idea command+alt+o remove invalid import */ public class StringStatistics { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str=""; while(sc.hasNext()){ str = sc.nextLine();//aaabbcca----3a2b1c1a System.out.println(statistics(str)); } sc.close(); } private static String statistics(String str) { if(str==null) return null; int begin=0; int end=str.length()-1; String reStr =""; int count =1; while(begin<=end){ if ((begin<end-1)&&(str.charAt(begin)==str.charAt(begin+1))){ begin++; count++; }else { reStr+=count+String.valueOf(str.charAt(begin)); begin++; count=1; } } return reStr; } }
以上是关于统计字符 比如aaabbcca----3a2b1c1a的主要内容,如果未能解决你的问题,请参考以下文章