Answer:
C. Works by merging two sorted vectors into one larger sorted vector
Step-by-step explanation:
Merge sort is an efficient, general-purpose, comparison-based sorting algorithm.
Merge sort repeatedly breaks down a list into several sub-lists until each sublist consists of a single element and merging those sub-lists in a manner that results into a sorted list.