Which sorting algorithm uses a divide-and-conquer strategy to sort data?

  • Bubble Sort
  • Insertion Sort
  • Merge Sort
  • Selection Sort
Merge Sort is a sorting algorithm that uses a divide-and-conquer strategy. It divides the unsorted list into smaller sublists, sorts those sublists, and then merges them to obtain the final sorted list. This approach results in better performance compared to some other sorting algorithms.
Add your answer
Loading...

Leave a comment

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