删除 PriorityQueue 的顶部?
假设我使用 Java.util 中的 PriorityQueue 类。我想从 PriorityQueue pq 中删除最大的数字,我们假设它位于队列的头部。
下面的工作会起作用吗?
// 1
int head = pq.peek();
pq.dequeue(head);
// 2
int head = pq.dequeue(pq.peek());
这对于非基元也同样有效吗?
Assume that I am using the PriorityQueue class from Java.util. I want to remove the largest number from the PriorityQueue pq, which we assume is at the head of the queue.
Will the following work?
// 1
int head = pq.peek();
pq.dequeue(head);
// 2
int head = pq.dequeue(pq.peek());
Would this work the same for non-primitives as well?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Queue#peek
和Queue#element
返回队列的头值,Queue#poll
和Queue#remove
返回并删除它。看起来
就是你想要的。
并且:它仅适用于非原始值,因为队列仅存储对象。诀窍是,(我猜)您的队列存储
Integer
值,并且 Java 1.5+ 可以自动将结果转换为int
原语(发件箱)。所以它感觉就像队列存储int
值。Queue#peek
andQueue#element
return the head value of the queue,Queue#poll
andQueue#remove
return and remove it.It looks like
is what you want.
And: it will only work for non-primitive values because a queue will store objects only. The trick is, that (I guess) your queue stores
Integer
values and Java 1.5+ can automatically convert the results toint
primitives (outboxing). So it feels like the queue storedint
values.peek()
- 返回但不删除头值poll()
- 返回并删除头值peek()
- return but doesn't remove head valuepoll()
- return and remove head value