Merge sort algorithm is Divide and Conquer Algorithm.
Divide: Parition (integer division) the list of items/objects into halves
Conquer: Merge the Partitioned element/object
Complexity : theta(n log n) for Best, Worst and Average Case
Syed Hasnain Shah
Merge sort algorithm is Divide and Conquer Algorithm.
Divide: Parition (integer division) the list of items/objects into halves
Conquer: Merge the Partitioned element/object
Complexity : theta(n log n) for Best, Worst and Average Case
Syed Hasnain Shah