Skip to content

ztgu/sorting_algorithms_py

Repository files navigation

sorting_algorithms_py

Basic sorting algorithms written in python. The code is simple and easy to understand.

Average Complexities!

Check out the average Big-O complexities of the common sorting algorithms:

  • Quicksort: O(n log(n))
  • Mergesort: O(n log(n))
  • Heapsort: O(n log(n))
  • Bubble Sort: O(n^2)
  • Insertion Sort: O(n^2)
  • Selection Sort: O(n^2)

About

Basic sorting algorithms in python. Simplicity.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages