About Lesson
Merge sort is the sorting technique that follows the divide and conquer approach. It divides the given list into two equal halves, calls itself for the two halves and then merges the two sorted halves.
The sub-lists are divided again and again into halves until the list cannot be divided further. Then we combine the pair of one element lists into two-element lists, sorting them in the process. The sorted two-element pairs are merged into the four-element lists, and so on until we get the sorted list.