Java PriorityQueue remove()方法
java.util.PriorityQueue.remove() 用于检索和删除队列的头部。
1 语法
public boolean remove(Object o)
2 参数
o:要从此队列中删除的元素。
3 返回值
如果此队列由于调用而更改,则方法调用返回true。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.PriorityQueue.remove()方法的例子
*/
import java.util.*;
public class Demo {
public static void main(String args[]) {
// create priority queue
PriorityQueue < Integer > prq = new PriorityQueue < Integer > ();
// insert values in the queue
for ( int i = 3; i < 10; i++ ) {
prq.add (new Integer (i)) ;
}
System.out.println("Initial priority queue values are: "+ prq);
// remove 7 from the queue
boolean isremoved = prq.remove(7);
System.out.println("Return value after remove: "+ isremoved);
System.out.println("Priority queue values after remove: "+ prq);
}
}
输出结果为:
Initial priority queue values are: [3, 4, 5, 6, 7, 8, 9]
Return value after remove: true
Priority queue values after remove: [3, 4, 5, 6, 9, 8]
热门文章
优秀文章