Technical Interview

Home
Technical Interview
Interview Process
Introduction Questions
Quantitative Problems
Google & Microsoft
Algorithms
C/C++ Questions
Java Questions
Data Structures
Fundamental Questions
Puzzles
Resume Tips
Added Recently
Links
Contact Us
Submit Question/Answer

What is the minimum number of queues needed to implement the priority queue?

 

Two. One queue is used for the actual storing of data, and the other one is used for storing the priorities.