titan2400

Queue

Jul 14th, 2014
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. Queue
  2.  
  3. - Implement queue using stack
  4. - Implement stack using queue
  5. - Implement queue using array (normal n dynamic) and linked list
  6. - Implement circular queue using array and linked list
  7. - Search for largest n smallest element in the queue
  8. - Sort elements and print
  9. - what are double-ended queues?
  10. - Implement a priority queue(using heap,etc)
  11. - Reverse stack using queue
  12. - Reverse queue using stack-
  13. - Delete -ve elements from the queue
  14. - Implement priority queue using queue
  15. - Overflow queue implementation-http://codereview.stackexchange.com/questions/31978/implement-data-structure-overflow-queue
  16. - Producer consumer threads using queue-http://stackoverflow.com/questions/2332537/producer-consumer-threads-using-a-queue
  17. - Queue implementation in java-using predefined methods
Advertisement
Add Comment
Please, Sign In to add comment