`

PriorityQueue的使用

    博客分类:
  • Java
 
阅读更多

http://blog.csdn.net/yangzhongblog/article/details/8607632

1 概念

  优先级队列PriorityQueue是不同于先进先出队列的另一种队列,每次从队列中取出的是具有最高优先权的元素。优先队列可用有序数组或堆实现,但是常用堆来实现,下面是2种实现效率的比较:



使用:用于获取优先权最高的元素。

例如:在1000个数中找到最大的那个数。如果用快速排序对数就行排序,时间复杂度是O(NlogN);而用优先队列(用队实现)存储数据,然后取出最大元素(此处为优先权最大的元素)这种数据结构时间复杂度为O(logN)。

2 java.util.PriorityQueue方法

  java.util.PriorityQueue是从JDK1.5开始提供的新的数据结构接口。如果不提供Comparator的话,优先队列中元素默认按自然顺序排列,也就是数字默认是小的在队列头,字符串则按字典序排列优先级队列不允许 null 元素。其提供的方法如下:


 

3 使用例子

定义存储对象

 

[java] view plaincopy
 
  1. <span style="font-size:18px;">package zyang.priorityQueue;  
  2.   
  3. /**  
  4.  * Fuction: 
  5.  * @version  2013-2-24 下午8:15:59  
  6.  * @since    1.0  
  7.  */  
  8.   
  9. public class Student {  
  10.       private int number;  
  11.       private String name;  
  12.         
  13.       public Student(int number,String name){  
  14.           this.number=number;  
  15.           this.name=name;  
  16.       }  
  17.   
  18.     public int getNumber() {  
  19.         return number;  
  20.     }  
  21.   
  22.     public void setNumber(int number) {  
  23.         this.number = number;  
  24.     }  
  25.   
  26.     public String getName() {  
  27.         return name;  
  28.     }  
  29.   
  30.     public void setName(String name) {  
  31.         this.name = name;  
  32.     }  
  33.   
  34.     @Override  
  35.     public String toString() {  
  36.         return "Student [number=" + number + ", name=" + name + "]";  
  37.     }   
  38. }  
  39. </span>  


定义比较器

 

 

[java] view plaincopy
 
  1. <span style="font-size:18px;">package zyang.priorityQueue;  
  2.   
  3. import java.util.Comparator;  
  4.   
  5. /**  
  6.  * Fuction: 
  7.  * 按学号排序 先按学号排序,学号相等时,按姓名排序 o1>o2返回-1,o1=o2返回0,o1<o2返回1  
  8.  * @author    
  9.  * @version  2013-2-24 下午8:16:26  
  10.  * @since    1.0  
  11.  */  
  12.   
  13. public class ComparetorByNumber implements Comparator {  
  14.   
  15.     public int compare(Object o1, Object o2) {  
  16.         Student s1=(Student)o1;  
  17.         Student s2=(Student)o2;  
  18.           
  19.         //compare by number  
  20.         int result=s1.getNumber() > s2.getNumber() ? 1 :(s1.getNumber() == s2.getNumber() ? 0 : -1);  
  21.         //if number is equal, then compare by name  
  22.         if (result==0){  
  23.             int compareByName=s1.getName().compareTo(s2.getName());  
  24.             if(compareByName>0)  
  25.                 result=1;  
  26.             else if(compareByName==0)  
  27.                 result=0;  
  28.             else  
  29.                 result=-1;  
  30.         } //end if  
  31.           
  32.         return (-result); //如果是result,则a>b比较结果后排序是ba,-result代表倒序排序  
  33.     }  
  34. }</span>  

 

优先队列的使用

 

[java] view plaincopy
 
  1. <span style="font-size:18px;">package zyang.priorityQueue;  
  2.   
  3. import java.util.PriorityQueue;  
  4.   
  5. /**  
  6.  * Fuction: 
  7.  * 
  8.  * @author   yangzhong  E-mail:yangzhonglive@gmail.com 
  9.  * @version  2013-2-24 下午8:15:39  
  10.  * @since    1.0  
  11.  */  
  12.   
  13. public class PriorityQueueApp {  
  14.   
  15.     /** 
  16.      * @param args 
  17.      */  
  18.     public static void main(String[] args) {  
  19.         PriorityQueue<Student> priorityQueue=new PriorityQueue<Student>(3,new ComparetorByNumber());  
  20.           
  21.         Student[] student={new Student(3,"wangwu"),new Student(2,"lisi"),  
  22.                 new Student(5,"xiaowang"),new Student(8,"lihua")};  
  23.           
  24.         for(Student s: student){  
  25.             priorityQueue.offer(s); //use offer() method to add elements to the PriorityQueue   
  26.         }  
  27.           
  28.         System.out.println("size: " + priorityQueue.size()); //print size  
  29.         System.out.println("peek: " + priorityQueue.peek()); //return highest priority element in the queue without removing it  
  30.         System.out.println("size: " + priorityQueue.size()); //print size  
  31.         System.out.println("poll: " + priorityQueue.poll()); //return highest priority element and removes it from the queue  
  32.         System.out.println("size: " + priorityQueue.size()); //print size  
  33.         while(!priorityQueue.isEmpty()) {  
  34.             System.out.print(priorityQueue.poll() + " ");  
  35.         }  
  36.         System.out.println("  the end!");  
  37.     }  
  38. }  
  39. </span>  

输出结果如下:

 



分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics