https://github.com/dahlitzflorian/java-dijkstra-algorithm
A Java implementation of the Dijkstra Algorithm.
https://github.com/dahlitzflorian/java-dijkstra-algorithm
algorithm algorithms dijkstra-algorithm education educational educational-project java
Last synced: 2 months ago
JSON representation
A Java implementation of the Dijkstra Algorithm.
- Host: GitHub
- URL: https://github.com/dahlitzflorian/java-dijkstra-algorithm
- Owner: DahlitzFlorian
- License: mit
- Created: 2018-05-22T10:17:00.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-28T14:53:30.000Z (almost 7 years ago)
- Last Synced: 2025-01-08T13:27:14.141Z (4 months ago)
- Topics: algorithm, algorithms, dijkstra-algorithm, education, educational, educational-project, java
- Language: Java
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dijkstra Algorithm #
## Description ##
This repository contains a java implementation of the [Dijkstra Algorithm](https://de.wikipedia.org/wiki/Dijkstra-Algorithmus). It was implemented for educational purposes and was not designed for productive usage.version 1.0
## Usage ##
To use and test the implemented Dijkstra-Algorithm, clone this repository via
```bash
git clone https://github.com/DahlitzFlorian/java-dijkstra-algorithm
```
and go into the created directory *java-dijkstra-algorithm*.To test the implementation, compile the source files via
```bash
javac Main.java
```
and run the Main via
```bash
java Main
```## Contributors ##
| Contributor | Role | GitHub | Twitter |
| ----------- | ---- | ------ | ------- |
| Johann Becker | Core | @jeb1jeb2 | [jeb1jeb2](https://twitter.com/jeb1jeb2) |
| Florian Dahlitz | Core | @DahlitzFlorian | [DahlitzF](https://twitter.com/DahlitzF) |
| Tim Leuschner | Core | @tleuschner | [stims22](https://twitter.com/stims22) |