优先级队列在添加时未排序
2022-09-01 05:41:34
我有一个优先级队列,我在其中添加了一个 Node 对象,其中的节点应按它们包含的值进行排序。由于某种原因,优先级队列不会在添加时对节点进行排序。如果有人能看到这方面的问题或有任何指导,我将不胜感激。下面是一个简短示例:
PriorityQueue<Node> PQ = new PriorityQueue<Node>();
//for each entry create a node and add it to the PriorityQueue
for(Entry<Character,Integer> entry : entries){
PQ.add(new Node(entry.getKey(),entry.getValue(), true));
}
这是节点的方法:compareTo
@Override
public int compareTo(Node n) {
if(n.frequency.intValue() > this.frequency.intValue()) return -1;
else if(n.frequency.intValue() == this.frequency.intValue()) return 0;
else return 1;
}