优先级队列简介

来源:互联网 发布:人工智能工程师招聘 编辑:程序博客网 时间:2024/05/22 15:17

优先级队列(PriprityQueue)是一种无界队列,基于优先级堆,它的元素根据自然顺序或者通过实现Comparator接口的自定义排序方式进行排序。这篇文章,我们将创建一个Items的优先级队列,基于价格排序,优先级队列用来实现迪科斯彻算法(Dijkstra algorithm)非常实用。值得注意的是他的迭代器并不保证有序,如果需要按顺序遍历,最好使用Arrays.sort(pd.toArray())方法。同时它的实现不是同步的,意味着在多线程中不是线程安全的对象,可以取而代之的是PriorityBlockingQueue,它能用于多线程环境。优先级队列提供了O(log(n))时间在出队和入队的方法上,比如:offer(),poll(),add(),但是对于检索操作如:peek(),element()提供的是常量(固定)时间。

如何使用PriorityQueue

这里是如何使用PriorityQueue的一个例子,如上所说,你可以使用特定的顺序来组织元素,可以是自然顺序或者元素实现Comparator接口,这个例子中,我们把Items对象放入优先级队列中,按照价格排序,你可以注意下Item类的compareTo方法,它与equals方法是保持一致的,这里把Item类作为内部静态类,把item存储在优先级队列中,你可以一直使用poll()方法获取价格最低的那个item。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
packagetest;
 
importjava.util.PriorityQueue;
importjava.util.Queue;
 
/**
  * Java Program to show How to use PriorityQueue in Java. This example also demonstrate
  * that PriorityQueue doesn't allow null elements and how PriorityQueue keeps elements i.e. ordering.
  *
  * @author
 */
publicclass PriorityQueueTest {
 
    publicstatic void main(String args[]) {
 
        Queue<Item> items = newPriorityQueue<Item>();
        items.add(newItem("IPone",900));
        items.add(newItem("IPad",1200));
        items.add(newItem("Xbox",300));
        items.add(newItem("Watch",200));
 
        System.out.println("Order of items in PriorityQueue");
        System.out.println(items);
 
        System.out.println("Element consumed from head of the PriorityQueue : " + items.poll());
        System.out.println(items);
 
        System.out.println("Element consumed from head of the PriorityQueue : " + items.poll());
        System.out.println(items);
 
        System.out.println("Element consumed from head of the PriorityQueue : " + items.poll());
        System.out.println(items);
 
        //items.add(null); // null elements not allowed in PriorityQueue - NullPointerException
 
    }
 
    privatestatic class Item implementsComparable<Item> {
 
        privateString name;
        privateint price;
 
        publicItem(String name, intprice) {
            this.name = name;
            this.price = price;
        }
 
        publicString getName() {
            returnname;
        }
 
        publicint getPrice() {
            returnprice;
        }
 
        @Override
        publicboolean equals(Object obj) {
            if(obj == null) {
                returnfalse;
            }
            if(getClass() != obj.getClass()) {
                returnfalse;
            }
            finalItem other = (Item) obj;
            if((this.name == null) ? (other.name != null) : !this.name.equals(other.name)) {
                returnfalse;
            }
            if(this.price != other.price) {
                returnfalse;
            }
            returntrue;
        }
 
        @Override
        publicint hashCode() {
            inthash = 5;
            hash = 97 hash + (this.name != null? this.name.hashCode() : 0);
            hash = 97 hash + this.price;
            returnhash;
        }
 
        @Override
        publicint compareTo(Item i) {
            if(this.price == i.price) {
                returnthis.name.compareTo(i.name);
            }
 
            returnthis.price - i.price;
        }
 
        @Override
        publicString toString() {
            returnString.format("%s: $%d", name, price);
        }     
 
    }
}

Output:

1
2
3
4
5
6
7
8
9
10
11
12
Order of items in PriorityQueue
 
[Watch: $200, Xbox: $300, IPone: $900, IPad: $1200]
Element consumed from head of the PriorityQueue : Watch: $200
 
[Xbox: $300, IPad: $1200, IPone: $900]
Element consumed from head of the PriorityQueue : Xbox: $300
 
[IPone: $900, IPad: $1200]
Element consumed from head of the PriorityQueue : IPone: $900
 
[IPad: $1200]

从上面的输出结果可以很清晰的看到优先级对象始终把最小的值保存在头部,它的排序规则取决于compareTo()方法,尽管它不一定所有元素都是按序排列的,但是它能保证队列的头一定是最小的元素,这也是TreeSet和PriorityQueue的区别,前者能保证所有元素按序排列,而优先级队列仅仅保证列的头是有序的,另一个需要注意的地方是PriorityQueue并不允许null元素存在,如果尝试添加null值,那么就会抛出NullPointException异常:

1
2
3
4
5
Exception in thread "main"java.lang.NullPointerException
        at java.util.PriorityQueue.offer(PriorityQueue.java:265)
        at java.util.PriorityQueue.add(PriorityQueue.java:251)
        at test.PriorityQueueTest.main(PriorityQueueTest.java:36)
Java Result: 1

总结:

1
和所有其他集合类一样,值得注意一下几点:
  1. 优先级队列不是同步的,如果需要保证线程安全那么请使用PriorityBlockingQueue
  2. 队列的获取操作如poll(),peek()和element()是访问的队列的头,保证获取的是最小的元素(根据指定的排序规则)
  3. 返回的迭代器并不保证提供任何的有序性
  4. 优先级队列不允许null元素,否则抛出NullPointException。

以上所有就是有关优先级队列的全部,它是一个很特别的类,用在一些特性的情景。记住:BlockingQueue维持的是插入的顺序,如果想维持自定义的顺序PriorityQueue或者PriorityBlockingQueue是正确的选择,TreeSet提供类似的功能,但是没有类似的检索+移除的方法:poll()

原文链接: Javarevisited 翻译: ImportNew.com 刘志军
译文链接: http://www.importnew.com/6510.html


0 0
原创粉丝点击