Skip to content

Releases: rebase-master/sortech

More sorting techniques added

12 Aug 17:20
Compare
Choose a tag to compare

New methods added corresponding to the following sorting techniques:

  • Insertion Sort
  • Selection Sort
  • Quick Sort
  • Merge Sort

Travis CI integration to test builds

11 Aug 12:09
Compare
Choose a tag to compare
  • Integrated Travis CI
  • Added multi-platform support

Initial Release: Bubble Sort

11 Aug 10:17
Compare
Choose a tag to compare
  • This is the initial release that contains a single sorting technique (Bubble sort).
  • A private method to internally check if array is already sorted or not before attempting to sort it.
  • Specs cover both methods.