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

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.

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) |