Sorting the order of growth of the functions?

Posted by rachel7660 on Stack Overflow See other posts from Stack Overflow or by rachel7660
Published on 2010-04-19T17:24:55Z Indexed on 2010/04/20 7:13 UTC
Read the original article Hit count: 325

Filed under:
|
|

Please order the function belows by growth rate from fastest to slowest:

  • n^10
  • 2^n
  • nlog(n)
  • 10^6

And my answer is:

  • 2^n
  • n^10
  • nlog(n)
  • 10^6

Is my answer correct?

© Stack Overflow or respective owner

Related posts about function

Related posts about homework