Tagged Questions

4
votes
3answers
50 views

Multiplying and adding different asymptotioc notations

does anyone knows how to perform such calculations Example: O(n^2) + THETA(n) + OMEGA(n^3) = ? or O(n^2) * THETA(n) * OMEGA(n^3) = ? In general, how to add and multiply different asymptotic ...
1
vote
4answers
1k views

Asymptotic Notation - does n (log n) (log n) simplify?

If I have an algorithm that takes n log n steps (e.g. heapsort), where the steps take log n time (e.g. comparison/exchange of "big" integers in the range 0 to n-1), what is the asymptotic bound for ...