I'm trying to order the following functions in terms of Big O complexity from low complexity to high complexity: 4^(log(N))
, 2N
, 3^100
, log(log(N))
, 5N
, N!
, (log(N))^2
This:
3^100
log(log(N))
2N
5N
(log(N))^2
4^(log(N))
N!
I figured this out just by using the chart given on wikipedia. Is there a way of verifying the answer?