Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 266 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 266 Bytes

sorting-algorithms

This contains 6 python sorting algorithms:

  • insertion sort
  • selection sort
  • bubble sort
  • heap sort
  • quick sort
  • merge sort

It also contains:

  • binary search
  • linear search
  • a demonstration of using quicksort and binary search together