Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

127
votes
16answers
15k views

What does O(log n) mean exactly?

I am currently learning about Big O Notation running times and amortized times. I understand the notion of O(n) linear time, meaning that the size of the input affects the growth of the algorithm ...
9
votes
8answers
334 views

Help with big O notation

I've been having some problems trying to grasp the concept of big O notation. So, by definition big O is as follows, T(n) ∈ O(G(n)) if T(n) <= G(n) * C. Since the the constant "C" can be any ...
7
votes
4answers
600 views

Order of growth

for f = n(log(n))^5 g = n^1.01 is f = O(g) f = 0(g) f = Omega(g)? I tried dividing both by n and i got f = log(n)^5 g = n^0.01 But I am still clueless to which one grows faster. Can someone ...
0
votes
2answers
38 views

Little-oh notation in detail, CS homework, excluding actual assignment

I'm sitting here with this assignment in a course on algorithms with massive data sets and the use of Little-Oh notation has got me confused, although I'm perfectly confident with Big-Oh. I do not ...
0
votes
1answer
32 views

Order of growth listing

I was just wondering if you guys could give me some sample order of growth listings, like the following: n^n>n!>2^n>n^2>nlogn>n>n^1/2>logn>constant Do you know any more and ...