LinkedList中的Java Occurence反复打印

时间:2017-10-30 18:20:24

标签: java list

我正在使用Collections.frequency计算链接列表中单词的出现次数,但是因为它在for循环中,它会根据找到单词的次数重新打印该出现次数。

例如,如果我将两次“test”添加到列表中,并打印出它将打印的事件

test:2
test:2

我是否需要将它移到for循环之外?

String word = textField.getText().toLowerCase();
for(String y : wordList) {
   if(y.contains(word)) {
      System.out.println(y + " Occured: " + Collections.frequency(wordList,y) + " times");
    }
}

但是我想在没有set

的情况下继续使用LinkedList

2 个答案:

答案 0 :(得分:1)

您不需要使用循环。只使用Collections.frequency使用对象(word)就足够了:

List<String> wordList = new LinkedList<>();
wordList.add("test");
wordList.add("hello");
wordList.add("test");
wordList.add("world");
wordList.add("test");
wordList.add("hello");
wordList.add("test");
wordList.add("hello");

String word = "test";

System.out.println(word + " Occured: " + Collections.frequency(wordList,word) + " times");

输出:

  

测试Occured:4次

答案 1 :(得分:0)

使用count变量并在for循环外打印它的值。 e.g。

array(3) { [0]=> int(1) [1]=> int(2) [2]=> int(4) }