Computer Science, asked by Anonymous, 11 months ago

pseudocode algorithm for merge sorting ​

Answers

Answered by gauravarduino
0

Explanation:

Pseudocode

Merge Sort is a divide and conquer algorithm. It works by continually splitting a list in half until both halves are sorted, then the operation merge is performed to combine two lists into one sorted new list. When splitting a list, we consider the list is sorted if it contains zero or one element.

Similar questions