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.
- Host: GitHub
- URL: https://github.com/dahlitzflorian/java-queue
- Owner: DahlitzFlorian
- License: mit
- Created: 2018-05-16T16:03:53.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-16T16:16:27.000Z (almost 7 years ago)
- Last Synced: 2025-01-08T13:27:59.098Z (4 months ago)
- Topics: java, learning, learning-java, queue, sample, simple
- Language: Java
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!