Computer Science, asked by kalyan5732, 1 year ago

What is merge sort program?

Answers

Answered by Anonymous
0
Merge Sort is a Divide and Conquer algorithm. It divides input array in two halves, calls itself for the two halves and then merges the two sorted halves. 
Similar questions