/sort-algorithm

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

sort-algorithm

there are some popular sorting algorithms like:

  • Bubble sort => O(N^2)
  • Selection sort => O(N^2)
  • Insertion sort => O(N^2)
  • Quick sort => O(NlogN)