0
976views
Program in 'c' to implement merge sort.
1 Answer
| written 3.8 years ago by |
Merge sort is a sorting algorithm that uses the divide, conquer and combine algorithm paradigm.
A] Divide: It means partitioning the n-element array to be sorted into two sub arrays of n/2 elements in each sub-array.
B] conquer: It means sorting the two arrays recursively using merge sort.
C] combine: …