Skip to content

Commit 822c3f2

Browse files
committed
Added read me
1 parent bdaf367 commit 822c3f2

1 file changed

Lines changed: 19 additions & 1 deletion

File tree

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
#SortAlgorithmVisualizer
22
[![Build Status](https://travis-ci.org/LittleRolf/SortAlgorithmVisualizer.png?branch=master)](https://travis-ci.org/LittleRolf/SortAlgorithmVisualizer)
33

4-
PLaying Card Set Images from http://sourceforge.net/projects/vector-cards/ licensed LGPL 3.0.
4+
A program made to visualize different sorting-algorithms which need to be provided manually.
5+
Download the program [here](https://littlerolf.github.io/SortAlgorithmVisualizer/jar/SAV.jar). The API-JAR is available [here](https://littlerolf.github.io/SortAlgorithmVisualizer/jar/SAV_API.jar).
6+
Your class has to look like this:
7+
8+
```java
9+
package examplecompany;
10+
import de.littlerolf.sav.data.*;
11+
12+
public class Sorter extends BaseSorter {
13+
public int[] sortArray(int[] numbers) {
14+
//Insert algorithm here. At each step, call:
15+
saveHistory(numbers);
16+
}
17+
}
18+
```
19+
#License
20+
MIT
21+
22+
Playing Card Set Images from http://sourceforge.net/projects/vector-cards/ licensed LGPL 3.0.

0 commit comments

Comments
 (0)