I need to solve the following recurrence, only using the substituion method (CLRS):
$$ T(n) = \sqrt n \cdot T(\sqrt n) + \sqrt n $$
This is what I have done so far:
Changing variables $$ m = \log_{2}n$$ $$ n = 2^{m} $$ $$ \log n = m $$
Updating the recurrence function, so that $T(2^{m}) = S(m)$
$$ T(2^{m}) = 2^\frac{m}{2} \cdot T(2^\frac{m}{2}) + 2^\frac{m}{2}$$ $$ S(m) = \frac{m}{2} \cdot T(\frac{m}{2}) + \frac{m}{2}$$
And then here, I'm not sure how to proceed nor if my argument is correct so far.
I tried to follow a similar example answered here, but I wasn't able to properly translate it.