This repository includes a Java-based queue. It's realised through an interface
and a corresponding class. If you would like to see an example usage, make sure to
check out the TestQueue.java file.
version 1.0
To run the very basic test, clone this repository, go inside of the folder and compile
the source code via
javac IQueue.java Queue.java TestQueue.java
After that you are able to run the very basic test via
java TestQueue
The provided test contains a String-Queue and an Integer-Queue. Hope it's an inspiration for you!