A particular algorithm increases in time as the number of operations, n, increases.
Suppose the time complexity of this algorithm is given by: f(n) =4n3+5n2 * log(n).
Show that f(n) is O(g(n)) for g(n) = n3.
if there exists a positive real number M and a real number x0 such that
for all
So, we have:
f(n) =4n3+5n2 * log(n) < for
where
Comments