
I have to arrange the above time complexity function in increasing order of asymptotic complexity and indicate if there exist functions that belong to the same order.
So, my answer is
$[lg(n)]^2$
$lg(2^n)$ and $log(2^n)$ and $2^{lg(n)}$ these belong to the same order of O(n)
$nlog(n) + 1000 $
$n^{1.1}$
Just wish to check whether i'm right, since I'm not getting the same result as others. Thanks.