Quad Merge Sort is a divide-and-conquer sorting algorithm that recursively splits the array into four parts, sorts them individually, and merges them efficiently.
Paradigm
Divide and Conquer / Multi-way Merge
Author
Computer Scientists
Tier
Time Complexity
Best
Avg
Worst
Space
O(n)
Properties