有没有办法在java中遍历一个hashmap,其中key是一个String,一个值是一个Integer试图找到最常出现的单词
答案 0 :(得分:0)
这是解决方案。 “试图找到最常见的词汇”部分对我来说并不清楚
Yes_No = int(input("Do you have the hypotenuse? For yes press 1 or for no press 2"))
答案 1 :(得分:0)
没有理解'试图找到最常出现的词'。你可以试试这个。
Map<String, Integer> map = new HashMap<String, Integer>();
map.put("k1", 2);
map.put("k3", 3);
map.put("k2", 4);
Set keySet = map.keySet();
Iterator it = keySet.iterator();
while (it.hasNext()) {
String key = (String) it.next();
System.out.println(map.get(key));
}