You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
+
packageexamplecompany;
10
+
importde.littlerolf.sav.data.*;
11
+
12
+
publicclassSorterextendsBaseSorter {
13
+
publicint[] 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