Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 514 Bytes

File metadata and controls

15 lines (9 loc) · 514 Bytes

Priority Queue 💎

👈 Back to Data Structures dir

What is the priority queue

  • A data structure where each element has a priority. Elements with higher priorities are served before elements with lower priorities.
  • Use Min Binary Heap with smallest value at the root.

Class diagram

Priority Queue Class diagram

References