📜  优先级队列和堆之间的区别 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:31.379000             🧑  作者: Mango

代码示例1
This website provides a really clear explanation. http://pages.cs.wisc.edu/~vernon/cs367/notes/11.PRIORITY-Q.html

In short, a priority queue can be implemented using many of the data structures that we've already studied (an array, a linked list, or a binary search tree). However, those data structures do not provide the most efficient operations. To make all of the operations very efficient, we'll use a new data structure called a heap.