Ordering functions by Asymptotic Growth Rate
问题 List the following functions in non-descending order of asymptotic growth rate. If two or more functions have the same asymptotic growth rate then group them together. g1(n) = n g2(n) = n^3 +4n g3(n) = 2n log(base 2) n g4(n) = 2^n g5(n) = 3 ^ (3 * log(base 3) n) g6(n) = 10^n I've been looking through several examples online but I have no idea how to do this, it just seems like a completely foreign concept to me. If anyone could help me, that would be much appreciated. how do I even calculate