forked from Eckankar/PySortDemo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTODO
More file actions
11 lines (10 loc) · 734 Bytes
/
TODO
File metadata and controls
11 lines (10 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
== Features that could be nifty ==
- GUI-controls for selecting algorithm, speed, ...
== Algorithms to be implemented (in rough order of interest) ==
- Smoothsort ( http://en.wikipedia.org/wiki/Smoothsort )
- Timsort ( http://en.wikipedia.org/wiki/Timsort )
- JSort ( http://en.wikipedia.org/wiki/JSort + http://home.westman.wave.ca/~rhenry/sort/src/JSortAlgorithm.java )
- Runsort ( http://www.scss.tcd.ie/publications/tech-reports/reports.05/TCD-CS-2005-34.pdf )
- Sift sort ( http://home.westman.wave.ca/~rhenry/sort/src/SiftSort2Algorithm.java ) (I'm curious to see if it's a sort.)
- In-place merge sort ( http://www.cs.ubc.ca/~harrison/Java/MergeSortAlgorithm.java.html )
- Introsort ( http://en.wikipedia.org/wiki/Introsort )