What is merge sort?
4 years ago
Data Structure and Algorithm
Merge sort, is a divide-and-conquer approach for sorting the data. In a sequence of data, adjacent ones are merged and sorted to create bigger sorted lists. These sorted lists are then merged again to form an even bigger sorted list, which continues until you have one single sorted list.
Sujan Bk
Jan 9, 2022