Asymptotic complexity is an approximation of the edge case performance of an algorithm used to determine best and worst case scenarios.
-1
votes
0answers
37 views
Complexity of a range query on a quad-tree
I am trying to determine the complexity of a range query on a quadtree, that is "find all those points k that fall within r distance of a query point p in a quadtree". I then repeat this for all ...
-1
votes
1answer
33 views
Prove max(O(f(n)), O(g(n)))=O(max(f(n), g(n))
Prove max(O(f(n)), O(g(n)))=O(max(f(n), g(n))
It does make sense, but so far I don't have any idea how to actually prove it.
Any input would be appreciated.
-7
votes
1answer
67 views
Asymptotic Estimate for integer division [closed]
k = n; //integer division
while(k > 1) {
std::cout << k;
k=k/2;
}
I need to find out the asymptotic estimate as a function of n.
-2
votes
0answers
24 views
Prove or disprove asymptotic relation of two sets [closed]
I am looking for a while to prove or disprove:
O(f(n)-g(n)) ⊂ |O(f(n)) - O(g(n))|
where || is absolute value. Note that ⊂ is needed and not ⊆
I assumed the a subtraction operator between 2 O() means:
...
0
votes
2answers
18 views
Proving log(n!) is in Ω(n log(n))
The total cost of our operations are: Σ(i=1 to n) log(i).
Prove that this sum is Ω(n log(n)).
I'm a little bit stuck on how to go about proving this. I realize the summation comes out to be ...
1
vote
1answer
56 views
Coin change but with only 1 of each denomination of coin
The problem is:
The algorithm I came up with is something like:
pair<bool, bitmask>[n][A] memo;
// memo[i][j].first will be true if its possible to
// use up to i-th denomination for ...
0
votes
0answers
32 views
Solve the recurrence `T(n) = T(log2(n)) + 13n` [migrated]
I have the following recurrence relation T(n) = T(log2(n)) + 13n.
I believe in order to solve the equation I need to determine the height of the tree.
T(n) -> T(log2(n)) -> T(log2(log2(n))) -> ... ...
0
votes
1answer
54 views
Is this generalization of Big-Theta notation correct?
Say you have an algorithm that completes in a polynomial number of steps for the input of size n, like, for example, P(n)=2n^2+4n+3. The asymptotic tight bound for this algorithm Θ(n^2).
Is it true ...
0
votes
2answers
103 views
Studying for my final: Asymptotic notation [closed]
I am currently studying for my final in algorithms. This is not a homework problem and comes from an old final exam.
Show that f(n) = 4logn + log log n is big theta of logn.
It is obvious that ...
0
votes
0answers
19 views
Asymptotic complexities of log versus powers
Hey guys I'm working out some big-o problems from the Algorithms book by Dasgupta and am stuck on a few.
1) f(n) = n^0.1 g(n) = (log n)^10
According to the top answer on Asymptotic Complexity of ...
-2
votes
1answer
60 views
Time complexity of a recursive function
I have a Java function that receives a matrix (2-dimensional array[][]) and creates a dynamic array of options of changes for this array, and then recursively creates a dynamic array for each option ...
2
votes
1answer
63 views
time complexity of line segment or edge intersection finding algorithms
I briefly reviewed the literature on line intersection and line arrangement problems in computational geometry. Most of them are based on plane sweep algorithm. From the angle of computational ...
0
votes
2answers
63 views
Is it true or false that, for any algorithm, its average-case performance is always better than the worst-case performance asymptotically
I'd like to think this is true, but I'm not too confident in that answer. Is there an algorithm that has an equal running time in the both the average and worst case. I'm not sure if the answer would ...
0
votes
2answers
92 views
Is there any implementation to Remove by Key and get the Value at the same time?
I'm doing a performance critical program (little academic stuff) and I'm looking to optimize wherever possible (not like it proved "this is the" bottleneck).
I have a custom dictionary structure (a ...
-8
votes
1answer
65 views
Giving the Big O, Big Theta and Big Omega for a function [closed]
How can one give Big O, Big Theta or Big Omega for a function like
T(n) = n + 10*log n
Can someone please tell me how I can get the complexity for such a thing?
-1
votes
2answers
159 views
Interview questions
This is an interview question:
Given: f(n) = O(n)
g(n) = O(n^2)
find f(n) + g(n) and f(n).g(n)?
What would be the answer for this question?
2
votes
1answer
136 views
The time complexity of counting sort
I am taking an algorithms course and there I saw that the time complexity of counting sort is O(n+k) where k is the range of numbers and n is the input size. My question is, when the difference ...
10
votes
4answers
420 views
Time complexity of the program using recurrence equation
I want to find out the time complexity of the program using recurrence equations.
That is ..
int f(int x)
{
if(x<1) return 1;
else return f(x-1)+g(x);
}
int g(int x)
{
if(x<2) return 1;
...
1
vote
1answer
58 views
Running time of the following loop
I am trying to find the running time of the following loop:
int m=1;
for(i=1;i<=k;i++)
{
for(j=1;j<=A[i];j++)
{
B[m]=i;
m++;
}
}
Here, A is an array keeping ...
1
vote
3answers
78 views
Running time of counting sort
I am trying to understand the running time of counting sort. In my notes, it says, assuming the size of the array A is n, and k is the number of times each number occurs,
Counting-Sort(A,k) {
for ...
0
votes
2answers
141 views
Different upper bounds and lower bounds of same algorithm
So I just started learning about Asymptotic bounds for an algorithm
Question:
What can we say about theta of a function if for the algorithm we find different lower and upper bounds?? (say omega(n) ...
1
vote
3answers
311 views
Big O for worst-case running time and Ω is for the best-case, but why is Ω used in worst case sometimes?
I'm confused, I thought that you use Big O for worst-case running time and Ω is for the best-case? Can someone please explain?
And isn't (lg n) the best-case? and (nlg n) is the worst case? Or am I ...
1
vote
1answer
88 views
asymptotic-complexit - Calculate steps of primitive operations
I've some difficulties understanding how i should calculate the primitive operations of the following algorithm.
I know that the calculations of the steps is somehow like this:
(1) = 1 step: ...
1
vote
1answer
251 views
Complexity of inserting n numbers into a binary search tree
I have got a question, and it says "calculate the tight time complexity for the process of inserting n numbers into a binary search tree". It does not denote whether this is a balanced tree or not. ...
0
votes
2answers
135 views
Algorithm analysis (big-O) for algorithm
I'm trying to help a friend analyze the complexity of his algorithm but my understanding of Big-O notation is quite limited.
The code goes like this:
int SAMPLES = 2000;
int K_SAMPLES = 5000;
int i ...
0
votes
2answers
102 views
Is (log n)^k = O(n^1/2)? For k greater or equal to 0 [closed]
In big-O notation is O((log n)^k) = O(log n), where k is some constant right? So what's happening with the (log n)^k when k>=0?
0
votes
0answers
37 views
Asymptotic behaviour of logarithms [closed]
So, I'm supposed to compute the asymptotic behaviour of f(n)=log[ln5](log[5](n^(ln10))), but I haven't got any idea how to limit the function further than log[ln5](log[5](n)).
Any ideas?
0
votes
3answers
40 views
time complexity for the following
int i=1,s=1;
while(s<=n)
{
i++;
s=s+i;
}
time complexity for this is O(root(n)).
I do not understood it how.
since the series is going like 1+2+...+k .
please help.
-4
votes
1answer
61 views
time complexity of the following T(n)=T(√n)+θ(log(log(n))) [closed]
Solve the recursive relation
T(n)=T(√n)+θ(log(log(n)))
I tried and got θ(log(log(n))), but answer is different.
What can I do when getting “It does not meet our quality standards”?
1
vote
2answers
53 views
How can we denote the following function in terms of big-O notation?
I have got a function and want to denote it in terms of bigO notation.
f(n) = log4n+n*(1/3). Is this function O(n)? Thanks for your help
3
votes
1answer
56 views
Computational complexity of a piece of code
I have got a program, and trying to compute its complexity. I want to be sure i am not mistaken
for(int i=4; i<=n; i=i*4)
{
cout<<"counter for first loop: "<<++count1<<endl;
...
0
votes
2answers
75 views
Computational complexity of for loops-Contradicting with myself
I have a contradiction by analyzing the running time of a program. For example, consider the following piece of code:
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
.....
}
...
0
votes
1answer
46 views
Number of times a code is executed
I have a piece of code that says:
for i = 4,16, . . . , n
I am trying to find an upper bound in terms of big oh notation for the number of times the statement gets executed. I believe here it ...
3
votes
1answer
124 views
Asymptotic analysis of three nested for loops
I want to calculate the theta complexity of this nested for loop:
for (int i = 0; i < n; i++) {
for (int j = 0; j < i; j++) {
for (int k = 0; k < j; k++) {
...
1
vote
0answers
49 views
Merge algorithm with arrays split in c>2 ways
As an example question we are asked to create a variant of merge sort where it splits array in to c>2 arrays of roughly equal size (when c = 2 it will use regular merge)
This is the solution:
...
0
votes
0answers
67 views
Asymtotic Order(Recurrence Relation)
T(n)=T(n-1)+1/n
&
T(1)=1
This is the recurrence relation.Find Big Theta.
So, T(n)={T(n-2)+1/(n-1)}+1/n
=T(n-2)+1/(n-1)+1/n
......
T(1)+1+1/2+1/3+.....+1/(n-2)+1/(n-1)+1/(n)
I ...
1
vote
1answer
64 views
Big Oh Notation prob
Is 3^n = O(2^n) how about (3/2)^n = O(2^n) ? Can you explain the answers?
I got false for the first since, 3^n grows faster then 2^n no matter what constant C you multiply 2^n by. And same for the ...
1
vote
0answers
32 views
lower bound for matrix sorting?
consider the problem of sorting a n x n matrix i.e. the rows and columns are in ascending order. I want to find the lower and upper bound of this problem.
I found that it is O(n^2logn) by just ...
0
votes
1answer
37 views
Complexity function
could you help me to determine whether the following function of complexity:
f(n)=5n^3+1800nlogn+18
is of order O(n^2), O(n^4), OMEGA(n^3),OMEGA(n^5),TETA(n^3),TETA(n^5)
I think it is O(n^4), ...
-2
votes
2answers
132 views
solving recurrence examples of form T(n-i) + f(n) [closed]
I've been working on a problem set for a bit now and I seem to have gotten the master method down for recurrence examples. However, I find myself having difficulties with other methods (recurrence ...
0
votes
2answers
75 views
Asymptotic Expected Running Time
I'm having some trouble with an asymptotic analysis question. The problem asks for both the asymptotic worst case running time and the asymptotic expected running time of a function. Random(n) ...
1
vote
1answer
289 views
If f(n)=O(g(n)), then shouldnt f(n)∗log2(f(n)^c)=O(g(n)∗log2(g(n))) depend on the value of C?
If f(n)=O(g(n)), then shouldn't f(n)∗log2(f(n)^c)=O(g(n)∗log2(g(n))) depend on the value of C?
Here C is a positive constant. According to me if C is large then the statement would become false and ...
3
votes
3answers
94 views
Is there a library for programmatic manipulation of Big-O complexities?
I'm interested in programming languages that can reason about their own time complexity. To this end, it would be quite useful to have some way of representing time complexity programmatically, which ...
0
votes
1answer
217 views
Calculating big theta of function
I've been asked to calculate the big theta for a homework assignment, but the lecture material has been a little sparse on this area.
Given the loops
for (x = 1; x <= n; x *= 2){
for(y = 1; y ...
-2
votes
1answer
380 views
Little O and little omega proofs without using limits [closed]
I have the basic little o and little omega notations down. My question is how would you prove the statements without the use of limits. So for example if I had
2n^3 = w(n)
How would I give a formal ...
4
votes
2answers
148 views
Determining asymptotic complexity of program
Hey guys I'm fairly new to c++ and am trying to determine the asymptotic complexity of my program which takes in an input and determines if it's a polynomial or not.
"If the length of the input ...
1
vote
4answers
179 views
Can not figure out complexity of this recurrence
I am refreshing on Master Theorem a bit and I am trying to figure out the running time of an algorithm that solves a problem of size n by recursively solving 2 subproblems of size n-1 and combine ...
1
vote
2answers
184 views
Calculating complexity?
I've been trying to calculate the complexity of the following function:
k=n;
while(k>0)
g(n);
k=k/2; {Comment: this is integer division, so 1/2=0}
end while;
for(j=0;j<m;j++)
f(m);
...
0
votes
1answer
100 views
Algorithm and Data structure analysis compendium [closed]
I have googled a lot but i have not found any real good compendium about data structures and algorithm complexity. I have found "just" books or long papers..
I'm looking for something like a table ...
0
votes
3answers
118 views
C loop complexity
I'm preparing for an exam and these are some of problems from last year's tests. The task is to calculate both exact and asymptotic complexity. How would you solve it? Universally, if possible.
for ( ...



