Skip to content

Commit 62605f2

Browse files
authored
Update README.md combsort description (#67)
1 parent 82c4586 commit 62605f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The `SortingAlgorithms` package provides three sorting algorithms that can be us
88

99
- [HeapSort] – an unstable, general purpose, in-place, O(n log n) comparison sort that works by heapifying an array and repeatedly taking the maximal element from the heap.
1010
- [TimSort] – a stable, general purpose, hybrid, O(n log n) comparison sort that adapts to different common patterns of partially ordered input data.
11-
- [CombSort] – an unstable, general purpose, in-place, O(n log n) comparison sort with O(n^2) pathological cases that is very efficient for primitieve types and orders due to SIMD instructions and instruction level paralellism on modern hardware.
11+
- [CombSort] – an unstable, general purpose, in-place, O(n log n) comparison sort with O(n^2) pathological cases that can attain good efficiency through SIMD instructions and instruction level paralellism on modern hardware.
1212

1313
[HeapSort]: https://en.wikipedia.org/wiki/Heapsort
1414
[TimSort]: https://en.wikipedia.org/wiki/Timsort

0 commit comments

Comments
 (0)