KnowledgeBoat Logo
|

Computer Science

What is sorting ? Name some popular sorting techniques.

Python Data Handling

5 Likes

Answer

Sorting refers to arranging elements of a sequence in a specific order — ascending or descending.

Sorting Techniques are as follows :

  1. Bubble Sort
  2. Insertion Sort
  3. Selection Sort
  4. Heap Sort
  5. Quick Sort

Answered By

1 Like


Related Questions