使用java代码实现一个词频计算器统计某单词出现的频率具体代码
时间: 2023-03-13 11:29:07 浏览: 92
可以尝试下面的Java代码:String text = "put your text here";
String[] words = text.split("\\s+");
Map<String, Integer> wordCounts = new HashMap<String, Integer>();
for (String word : words) {
Integer count = wordCounts.get(word);
if (count == null) {
wordCounts.put(word, 1);
} else {
wordCounts.put(word, count + 1);
}
}
相关问题
使用java代码实现一个词频计算器统计某单词出现的频率
可以使用HashMap来实现一个词频计数器,首先将单词添加到HashMap中,然后使用for循环遍历整个字符串,并检查每个单词是否在HashMap中。如果存在,则将计数器加1,如果不存在,则将单词添加到HashMap中,并将计数器设置为1。
阅读全文