Java實現給定任一字符串,長度爲任意,要求找出其出現次數最多的字符及其出現次數。

import java.util.ArrayList; /** * 給定任一字符串,長度爲任意,要求找出其出現次數最多的字符及其出現次數。 * @author ZHOUMI2 */ public class Test { public static void findChar(String str) { if (str == null || str.length()
相關文章
相關標籤/搜索