I know that this loop is O(n^2) but what is Big-Omega and Big-Theta? How do you go about calculating them in situations like these?

for(i = 0; i < array.length; i++) 
   for (j = 0; j < array.length; j++)
      //bla bla
link|improve this question

Where did you hear about Big-Omega and Big-Theta? And where have you looked for information before asking here? – Oded Jun 11 '11 at 19:36
1  
This loop is not necessarily O(n²) if "bla bla" is a loop for (k=0; k<array.lenght; k++) //bla bla bla. Similarly, big omega and big theta cannot be determined without knowing what goes on in the loop (e.g., is there a break statement somewhere?). – larsmans Jun 11 '11 at 19:38
Ok sorry, assume //bla bla is a constant number of expressions. No breaks, etc. – Bill Jun 11 '11 at 20:14
@Oded, why does it matter where I "heard" about them, and I tried using keyword google searches to find an answer, but nothing out there explains what I need to know. I looked on here too but everything is on Big-O – Bill Jun 11 '11 at 20:15
feedback

1 Answer

up vote 0 down vote accepted

For starters, see larsmans' comment. The loop logic is not necessarily trivial enough to exclude. Let's say for argument's sake that you're confident that the loop logic will be not break out, that the logic is trivial (i.e. no conditional paths affecting the work performed), and that you are defining your unit of work to be the total logic performed in one pass through the loop.

In this case, your upper and lower bounds are the same. You are guaranteed to execute at least, and at most, on the order of N^2 units of work. You have a Ω(N^2), and a O(N^2). Your lower and upper bounds are identical; you can characterize Θ(N^2).

It bears mentioning again that this is pointless if the loop logic is non-trivial and is especially dependent on what you are actually defining as a unit of work. The point of these notations is to characterize an expected amount of work to be incurred by an algorithm. You can iterate through a loop millions of times, but that doesn't affect this notation if the work you really care about is how many times SomeExpensiveFunction() is called within that loop, and the logic dictates that it is only called once.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.