gpt4 book ai didi

java - 打印使用优先级队列排序的 HashMap 实例

转载 作者:行者123 更新时间:2023-12-02 09:54:33 50 4
gpt4 key购买 nike

我已经插入了 txt 文件的不同单词以及它们分别作为键和值在 HashMap 中重复的次数。问题是,我想使用 PQ 按降序打印 k 个最常用的单词,但是虽然似乎很容易将值插入整数优先级队列中,然后获取 k 个最大整数,但我无法弄清楚再次获取与每个值对应的键以打印它的方法(值可能不是唯一的)。一个解决方案是反转 HashMap ,但这似乎不是一个“安全”的选择。

public static void main(int k)throws IOException{

//Create input stream & scanner
FileInputStream file = new FileInputStream("readwords.txt");
Scanner fileInput = new Scanner(file);

Map<String, Integer> frequency = new HashMap<>();
LinkedList<String> distinctWords = new LinkedList<String>();
PriorityQueue<Integer> pQueue = new PriorityQueue<Integer>();

//Read through file and find the words
while(fileInput.hasNext()){
//Get the next word
String nextWord = fileInput.next().toLowerCase();
//Determine if the word is in the HashMap
if(frequency.containsKey(nextWord)) {
frequency.put(nextWord, frequency.get(nextWord) + 1);
}
else {
frequency.put(nextWord, 1);
distinctWords.add(nextWord);
}


}

//Close
fileInput.close();
file.close();



}

最佳答案

可能有多种解决方案,这是我的。创建 class有两个字段;一个为String一个为 Integer 。使类实现Comparable并重写方法compareTo所以它比较 Integers .

public class WordFrequency implements Comparable<WordFrequency> {
private String word;
private Integer frequency;

public WordFrequency(String word, Integer frequency) {
this.word = word;
this.frequency = frequency;
}

// descending order
@Override
public int compareTo(WordFrequency o) {
return o.getFrequency() - this.getFrequency();
}

public Integer getFrequency() {
return this.frequency;
}

@Override
public String toString() {
return word + ": " + frequency;
}
}

然后,将您的 map<String, Integer> 转换为到 PriorityQueue<WordFrequency> :

PriorityQueue<WordFrequency> pQueue = frequency.entrySet().stream()
.map(m -> new WordFrequency(m.getKey(), m.getValue()))
.collect(Collectors.toCollection(PriorityQueue::new));

如果要打印,必须使用poll() ,否则订单不保证。

while(!pQueue.isEmpty())
System.out.println(pQueue.poll());

关于java - 打印使用优先级队列排序的 HashMap 实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56098608/

50 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com