亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何理解PriorityQueue和PriorityBlockingQueue

發布時間:2021-11-17 11:06:03 來源:億速云 閱讀:166 作者:柒染 欄目:大數據

如何理解PriorityQueue和PriorityBlockingQueue,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。


簡介

Queue一般來說都是FIFO的,當然之前我們也介紹過Deque可以做為棧來使用。今天我們介紹一種PriorityQueue,可以按照對象的自然順序或者自定義順序在Queue中進行排序。


PriorityQueue

先看PriorityQueue,這個Queue繼承自AbstractQueue,是非線程安全的。


PriorityQueue的容量是unbounded的,也就是說它沒有容量大小的限制,所以你可以無限添加元素,如果添加的太多,最后會報OutOfMemoryError異常。


這里教大家一個識別的技能,只要集合類中帶有CAPACITY的,其底層實現大部分都是數組,因為只有數組才有capacity,當然也有例外,比如LinkedBlockingDeque。


只要集合類中帶有comparator的,那么這個集合一定是個有序集合。


我們看下PriorityQueue:

private static final int DEFAULT_INITIAL_CAPACITY = 11;
private final Comparator<? super E> comparator;


定義了初始Capacity和comparator,那么PriorityQueue的底層實現就是Array,并且它是一個有序集合。


有序集合默認情況下是按照natural ordering來排序的,如果你傳入了 Comparator,則會按照你指定的方式進行排序,我們看兩個排序的例子:


@Slf4j

public class PriorityQueueUsage {

   @Test
   public void usePriorityQueue(){
       PriorityQueue<Integer> integerQueue = new PriorityQueue<>();

       integerQueue.add(1);
       integerQueue.add(3);
       integerQueue.add(2);

       int first = integerQueue.poll();
       int second = integerQueue.poll();
       int third = integerQueue.poll();

       log.info("{},{},{}",first,second,third);
   }

   @Test
   public void usePriorityQueueWithComparator(){
       PriorityQueue<Integer> integerQueue = new PriorityQueue<>((a,b)-> b-a);
       integerQueue.add(1);
       integerQueue.add(3);
       integerQueue.add(2);

       int first = integerQueue.poll();
       int second = integerQueue.poll();
       int third = integerQueue.poll();

       log.info("{},{},{}",first,second,third);
   }}


默認情況下會按照升序排列,第二個例子中我們傳入了一個逆序的Comparator,則會按照逆序排列。


PriorityBlockingQueue

PriorityBlockingQueue是一個BlockingQueue,所以它是線程安全的。


我們考慮這樣一個問題,如果兩個對象的natural ordering或者Comparator的順序是一樣的話,兩個對象的順序還是固定的嗎?


出現這種情況,默認順序是不能確定的,但是我們可以這樣封裝對象,讓對象可以在排序順序一致的情況下,再按照創建順序先進先出FIFO的二次排序:


public class FIFOEntry<E extends Comparable<? super E>>
       implements Comparable<FIFOEntry<E>> {
   static final AtomicLong seq = new AtomicLong(0);
   final long seqNum;
   final E entry;
   public FIFOEntry(E entry) {
       seqNum = seq.getAndIncrement();
       this.entry = entry;
   }
   public E getEntry() { return entry; }
   public int compareTo(FIFOEntry<E> other) {
       int res = entry.compareTo(other.entry);
       if (res == 0 && other.entry != this.entry)
           res = (seqNum < other.seqNum ? -1 : 1);
       return res;
   }}


上面的例子中,先比較兩個Entry的natural ordering,如果一致的話,再按照seqNum進行排序。

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阳信县| 子洲县| 洛川县| 治县。| 昭平县| 桐梓县| 长葛市| 招远市| 襄垣县| 西藏| 天峨县| 辽源市| 盐池县| 秭归县| 龙游县| 隆昌县| 定州市| 南雄市| 文山县| 兴和县| 宁国市| 凌云县| 武威市| 高清| 阜城县| 定南县| 茶陵县| 镇平县| 新干县| 甘南县| 芮城县| 酒泉市| 霞浦县| 福安市| 屏边| 咸阳市| 孝感市| 闽侯县| 曲靖市| 德州市| 北票市|