Page 1 of 1

What will be the recurrence relation of the code of recursive selection sort?

Posted: Wed Jul 13, 2022 7:40 pm
by answerhappygod
a) T(n) = 2T(n/2) + n
b) T(n) = 2T(n/2) + c
c) T(n) = T(n-1) + n
d) T(n) = T(n-1) + c