@Test
public void test04() {
String s = "ANN国国NC中国AA国CC";
char[] chars = s.toCharArray();
Arrays.sort(chars);
String s1 = new String(chars);
System.out.println("s1 = " + s1);
for (int i = 0; i < s1.length(); ) {
char c = s1.charAt(i);
int lastIndexOf = s1.lastIndexOf(c);
System.out.println(c + "->" + (lastIndexOf - i + 1));
i = lastIndexOf + 1;
}
}