Page 1 of 1

Consider the Quick sort algorithm in which the partitioning procedure splits elements into two sub-arrays and each sub-a

Posted: Wed Jul 13, 2022 6:15 pm
by answerhappygod
a) T(n) <= 2 T(n/4) + cn
b) T(n) <= T(n/4) + T(3n/4) + cn
c) T(n) <= 2 T(3n/4) + cn
d) T(n) <= T(n/3) + T(3n/4) + cn