Introduction

priority queue is a special queue where:

  1. Every item in the queue has a priority, and
  2. Higher-priority items are dequeued before lower-priority items.

Picture a big list of bugs for an engineering team to tackle. You want to keep the highest-priority bugs at the top of the list.

Advantages

Disadvantages

Time Complexity

n is the number of nodes in the Priority Queue

Operation Big-O
Peek O(1)
Dequeue O(log(n))
Enqueue O(log(n))

Space Complexity

n is the number of nodes in the Priority Queue

**O(n**)

Implementation

Binary Heaps

Priority queues are often implemented using Binary Heaps. Notice how the highest priority is right at the top of the heap, ready to be grabbed in O(1) time.