Package topics.sorting.others
package topics.sorting.others
Additional sorting algorithms beyond the core set.
This package contains sorting algorithms that complement the main
topics.sorting package: non-comparison-based methods and
gap-based algorithms that achieve better practical performance on
specific input distributions.
Classes in This Package
BidirectionalBubble— cocktail-shaker sortBinaryInsertion— insertion sort with binary searchHeapsort— in-place O(n log n) heap sortRadix— non-comparison-based radix sortShellsort— gap-sequence insertion sort
-
ClassesClassDescriptionSorting algorithm: Bidirectional Bubble methodSorting algorithm: Binary Insertion methodSorting algorithm: Heapsort methodSorting algorithm: Radix methodSorting algorithm: Shellsort method