Play with different types of queues! Copy the files into a new Eclipse project.
- 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