Author | Message |
---|---|
G190852562
Posts: 162
|
Posted 14:38 Dec 08, 2014 |
5. Merge Sort: Pseudocode Recursively Sort the 1st Half of input array. Roughly what is the maximum depth of recursion (the maximum number of nested recursive calls) as a function of n, the length of the input array? n O(n) |