/py-sort

Sorting algorithms written in Python

Primary LanguagePython

Sorting algorithms written in Python.

Algorithms covered:

  • Simple extract minimum everytime and add to new array
  • Bubble sort
  • Insertion sort
  • Selection sort
  • Quick sort
  • Merge sort
  • Heap sort

All algorithms written as a function in seperate files. To try em, include that function in the header of tester.py, and call that function.

Make sure to include a valid test file!