Which of the following sorting algorithms is most efficient for small-sized data sets?

  • Bubble Sort
  • Insertion Sort
  • Merge Sort
  • Quick Sort
Insertion sort is the most efficient sorting algorithm for small-sized data sets. It has a simple implementation and performs well when the number of elements is small. Other sorting algorithms like Quick Sort and Merge Sort are more efficient for larger data sets.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *