Tagged Questions
76
votes
5answers
9k views
What is the difference between Θ(n) and O(n)?
Sometimes I see Θ(n) with the strange Θ symbol with something in the middle of it, and sometimes just O(n). Is it just laziness of typing because nobody knows how to type this symbol, or does it mean ...
7
votes
2answers
278 views
f(n)=n^log(n) complexity polynomial or exponential
I'm trying to figure out whether f(n)=n^(logb(n)) is in Theta(n^k) and therefore grows polynomial or in Theta(k^n) and therefore grows exponentially.
First I tried to simplify the function:
f(n) = ...
5
votes
2answers
2k views
Solving a recurrence T(n) = 2T(n/2) + n^4
I am studying using the MIT Courseware and the CLRS book Introduction to Algorithms.
I am currently trying to solve the recurrence (from page 107)
T(n) = 2T(n/2) + n4
If I make a recurrence ...
5
votes
4answers
4k views
Difference between lower bound and tight bound?
With the reference of this answer, what is Theta (tight bound)?
Omega is lower bound, quite understood, the minimum time an algorithm may take. And we know Big-O is for upper bound, means the maximum ...
3
votes
5answers
676 views
How to calculate worst case analysis of this algorithm?
sum = 0;
for(int i = 0; i < N; i++)
for(int j = i; j >= 0; j--)
sum++;
From what I understand, the first line is 1 operation, 2nd line is (i+1) operations, 3rd line is (i-1) ...
2
votes
1answer
89 views
Big Theta Run Time on Double Nested For
I'm trying to nail down a Big Theta run time on a double nested for loop that's a little fancier than your regular Θ(n2) double loop.
for i=0..n do
for j=0..i do
// some O(1) work
end
...
2
votes
2answers
229 views
Solving for Ω, and Θ (O, Omega and Theta notations)
I have solved a recurrence relation that has a running time of Θ(2^n), exponential
time.
How do I find Ω, and O for the same recurrence relation.
I guess if it is Θ(2^n), it should also be O(2^n), ...
2
votes
2answers
116 views
Compression Algorithm for Small Amounts of Data
I have a server-side program that generates JSON for a client. A few of my colleagues have suggested using zip/gzip compression in order to reduce the amount of data that sending over the wire. ...
2
votes
1answer
244 views
Confused on whether to express time complexity with theta notation or Big Oh notation
How to decide on expressing time complexity of algorithm ?
Should we choose to express time complexity in terms of O(n) or theta(n) ? Because a function f(n) can be expressed as either Big-Oh(g(n)) ...
1
vote
3answers
308 views
How to calculate big-theta
can some one provide me a real time example for how to calculate big theta
is big theta some thing like average case, (min-max)/2
i mean (minimum time - big O)/2
Please correct me if Iam wrong, ...
1
vote
1answer
582 views
Big-O notation's definition
I really want to know real definition. I have tried to read a book but couldn't understood.
O : Big-O notation worst case.
Θ : Theta notation average case.
Ω : Omega notation best case.
Q1> But ...
0
votes
1answer
70 views
Data structure log(n/i) =? [closed]
Is the sum from i=1 to n for log(n/i) = Θ(n)?
I'm studying for a test and appreciate your help.
This is what i did:
sum ( from i=1 to n ) log (n/i) = sum ( from i=1 to n ...
0
votes
1answer
189 views
Determining time complexity of for loops
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 < ...