An open API service indexing awesome lists of open source software.

https://github.com/dahlitzflorian/java-queue

Simple implementation of a queue in Java.
https://github.com/dahlitzflorian/java-queue

java learning learning-java queue sample simple

Last synced: 2 months ago
JSON representation

Simple implementation of a queue in Java.

Awesome Lists containing this project

README

        

# Java Queue #
## Description ##
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

## Run Tests ##
To run the very basic test, clone this repository, go inside of the folder and compile

the source code via

```bash
javac IQueue.java Queue.java TestQueue.java
```

After that you are able to run the very basic test via

```bash
java TestQueue
```

The provided test contains a String-Queue and an Integer-Queue. Hope it's an inspiration for you!