Skip to content

Implement common sort algorithms

Latest
Compare
Choose a tag to compare
@Silvochka Silvochka released this 25 Oct 20:49
· 25 commits to master since this release

Added stable sorting algorithms

  • Bubble
  • Cocktail
  • Gnome
  • Insertion
  • Merge
  • OddEven

Added unstable sorting algorithms

  • Heap
  • Quick
  • Selection
  • Shell

Added non-comparison based algorithms

  • Bucket (int)
  • Counting (int, stable/unstable)
  • LSD Radix (int)
  • MSD Radix (string)

Added testing framework which tests all sorters using Reflection