Please order a function that matches the growth rate.
n ^ 1.5
n ^ 0.5 + log n
n log ^ 2 n
n log ( n ^ 2 )
n log log n
n ^ 2 + log n
n log n
n
ps: Sorting by growth rate means that as n gets bigger and bigger, this function will ultimately be higher in value than others.
ps2. I ordered most of the functions: n, n log log n, n log n, n log ^ 2 n, n log (n ^ 2), n ^ 1.5
I just don’t know how to order: n ^ 2 + log n, n ^ 0.5 + log n, these 2 values
Can anyone help me? thank you
source
share