假设以下是我们的字符串 -
String myStr = "thisisit";
登录后复制
为了计算出现次数,我们使用 HashMap。循环并使用 containsKey(0 和 charAt() 方法,计算上述字符串中每个字符的出现次数 -
HashMap hashMap = new HashMap();
for (int i = myStr.length() - 1; i >= 0; i--) {
if (hashMap.containsKey(myStr.charAt(i))) {
int count = hashMap.get(myStr.charAt(i));
hashMap.put(myStr.charAt(i), ++count);
} else {
hashMap.put(myStr.charAt(i),1);
}
}
登录后复制
示例
以下是计算每个字符出现次数的程序 -
import java.util.HashMap;
public class Demo {
public static void main(String[] args) {
String myStr = "thisisit";
System.out.println("String ="+myStr);
HashMap hashMap = new HashMap();
for (int i = myStr.length() - 1; i >= 0; i--) {
if (hashMap.containsKey(myStr.charAt(i))) {
int count = hashMap.get(myStr.charAt(i));
hashMap.put(myStr.charAt(i), ++count);
} else {
hashMap.put(myStr.charAt(i),1);
}
}
System.out.println("Counting occurrences of each character = "+hashMap);
}
}
登录后复制
输出
String =thisisit
Counting occurrences of each character = {s=2, t=2, h=1, i=3}
登录后复制
以上就是Java程序来计算每个字符的出现次数的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!