Suppose a special recurrence relation for quicksort is: $T(0)=\Theta(1)$ (N>0) $T(N)= T(N-1)+T(0)+\Theta(\sqrt{N}) $
How does this relate to the theta class of: $\Theta(N \sqrt{N})$ ? Can someone please help me understand why this takes place and the steps it takes to get their?