java.util.PriorityQueue.poll() 方法


java.util.PriorityQueue.poll() 方法

package com.codingdict;

import java.util.*;

public class PriorityQueueDemo {
   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);

      // get the head from the queue
      Integer head = prq.poll();

      System.out.println("Head of the queue is: "+ head);
      System.out.println("Priority queue values after poll: "+ prq);
   }
}