Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 1.09 KB

README.md

File metadata and controls

17 lines (14 loc) · 1.09 KB

queue-practice

Play with different types of queues! Copy the files into a new Eclipse project.

Suggested approach

  • Check out the standard library Queue interface below!
  • Did you know LinkedList implements Queue?
  • Start with LinkedQueue to see a straight forward list implementation
  • Move on to ArrayQueue and see how growable arrays can make good queues
  • Try out ConcurrentQueue to learn about basic locking and multithreading

Java docs