Tagged Questions
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 ...
4
votes
4answers
3k 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
577 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
2answers
176 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
109 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
216 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)) ...
0
votes
3answers
230 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, ...