您需要使用地图 - 这会自动处理维护唯一的单词列表。如果您覆盖put
聚合而不是覆盖的方法,那么它将自动累加计数。
private void readWords(final Iterator<String> in) {
final Map<String, Integer> wordMap = new HashMap<String, Integer>() {
@Override
public Integer put(String key, Integer value) {
final Integer origValue = get(key);
if (origValue == null) {
return super.put(key, value);
} else {
return super.put(key, origValue + value);
}
}
};
while (in.hasNext()) {
wordMap.put(in.next(), 1);
}
//just for display - not necessary
for (final Entry<String, Integer> entry : wordMap.entrySet()) {
System.out.println("Word '" + entry.getKey() + "' appears " + entry.getValue() + " times.");
}
}
测试:
List<String> strings = new LinkedList<String>();
strings.add("one");
strings.add("two");
strings.add("two");
strings.add("three");
strings.add("three");
strings.add("three");
readWords(strings.iterator());
输出:
Word 'two' appears 2 times.
Word 'one' appears 1 times.
Word 'three' appears 3 times.
TreeMap
您可以使用 a而不是 a按字母顺序对单词进行排序HashMap
- 这可能看起来更适合显示;取决于你打算用地图做什么。