Calculate the time complexicity of the recurrence equation

Viewed 186

I'm having problems calculating the complexity of the following recurrence equation. enter image description here

It's quite difficult for me to solve it. Could anyone help me to solve this problem? Thanks in advance.

1 Answers

This is the same recurrence for the average case complexity of quicksort with solution

T(n)=O(n log n)

derivation here

Related