Question:medium

Which data structure is used to implement priority scheduling?

Show Hint

Priority Queues are most commonly implemented using a Heap data structure (Binary Heap), which allows for efficient $O(\log n)$ insertion and deletion of the maximum/minimum element.
Updated On: Jul 4, 2026
  • Stack
  • Queue
  • Priority queue
  • Linked list
Show Solution

The Correct Option is C

Solution and Explanation

Was this answer helpful?
0