...
/Five Common Rules for Analyzing the Runtime
Five Common Rules for Analyzing the Runtime
Review the five common rules of runtime analysis of the algorithms.
Rule #1
This rule states that multiplicative constants can be omitted:
.
Examples: , , .
Rule #2
This rule states that out of two polynomials, the one with a larger degree grows faster:
for
Examples: , , , .
Rule #3
This rule states that any polynomial grows slower than any exponential:
for ,
Examples: , .
Rule #4
This rule states that any polylogarithm—that is, a function of the form —grows slower than any polynomial:
for
Examples: ,
Rule #5
This rule states that smaller terms can be omitted:
, then .
Examples: , .