https://github.com/thomasmueller/fastsort_java
https://github.com/thomasmueller/fastsort_java
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thomasmueller/fastsort_java
- Owner: thomasmueller
- Created: 2020-01-16T07:20:46.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-11-29T15:06:37.000Z (over 4 years ago)
- Last Synced: 2025-06-15T23:25:52.588Z (about 1 year ago)
- Language: Java
- Size: 16.6 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fastSort_java
Some sorting experiments.
Currently it is a benchmark comparing regular Java sort (Array.sort) against a hybrid of samplesort and Arrays.sort. The samplesort hybrid is about 40% faster, when using randomly shuffled data, no duplicates, more than 100'000 entries. Of course more experiments would be needed to get a fair comparison, but it looks promising.
## See also
https://github.com/thomasmueller/fastSort_cpp