Skip to content

Latest commit

 

History

History

Sort

Sorting Algorithms

In computer science, a sorting algorithm is an algorithm that puts elements of a list in a certain order.
The most-used orders are numerical order and lexicographical order.

Some commonly used sortinig algorithms

  1. Selection Sort
  2. Bubble Sort
    Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in wrong order.
  3. Insertion Sort
  4. Quick Sort
  5. Merge Sort
  6. Heap Sort
  7. Radix Sort
  8. Topological Sort It is Used in Graphs. Go Back{: .btn}