How to mathematically solve the recurrence relations of the following form :

1. [T(n)=(2^n)T(n/2) + n^n][1]
2. [T(n)=4T(n/2) + n^(2)logn][2]

Is there a generic method to solve these?

I realize that master theorem is not applicable on these forms because in 1, 2^n is not a constant and 2 does not fall into any of the 3 cases of the master theorem.


[1]: https://i.stack.imgur.com/7GAIA.png
[2]: https://i.stack.imgur.com/ZYvSo.png