Index | About | Me | Jump to Menu Section

Sorting algorithms

Categorizing Sorting Algorithms

Algorithms

Selection Sort O(n^2)

Insertion sort O(n^2)

Mergesort O(n lg n)

Quicksort O(n lg n)

Bublesort O(n^2)

Heapsort O(n lg n)

Comparison of different sorting algorithms

Sources