Content deleted Content added
Line 6:
The merge algorithm plays a critical role in the [[merge sort]] algorithm, a [[comparison sort|comparison-based sorting algorithm]]. Conceptually, merge sort algorithm consists of two steps:
# [[Recursion (computer science)|Recursively]] divide the list into sublists of (roughly) equal length, until each sublist contains only one element
# Repeatedly merge sublists to create a new sorted sublist until the single list contains all elements. The single list is the sorted list.
|