Tagged Questions
0
votes
1answer
81 views
Collatz conjecture: loose upper/lower bounds? [closed]
This is a problem from my textbook. The Collatz conjecture (or the "3n + 1" problem) works as follows (given some natural number n):
while n > 1 do
if n is even then
n = n / 2
...
1
vote
1answer
58 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
1answer
58 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
114 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
2answers
64 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 ...
-1
votes
2answers
167 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
243 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
445 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
60 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
90 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
159 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
363 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
100 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
369 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
157 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 ...
-4
votes
1answer
66 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
61 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
59 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
82 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
47 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 ...
1
vote
4answers
183 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
205 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
105 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
1answer
59 views
Number of addition and multiplication operators in this algorithm
Consider the following algorithm:
i := 1
t := 0
while i ≤ n
t := t + i
i := 2i
I'm interested in finding out how many addition and multiplication operations this algorithm ...
0
votes
2answers
64 views
Analyzing Running Time
def foo(x):
if x > 5:
return foo(x–1) – foo(x-1)
else:
return 77
def bar(a,b):
if (b > 0):
return bar( bar(a, b+1) , b-1 )
else:
return 0
...
3
votes
1answer
93 views
Assymptotic time complexity of this algorithm
I would like to know the time complexity of the following algorithm. At first glance the time complexity looks to be O(n^5) and that is what is mentioned in majority of the sites i have seen on the ...
-1
votes
2answers
129 views
How to calculate O(n, x) for a given algorithms by examples? [closed]
I want to calculate the running time O(n, x) = Theta(n, x) for a given algorithm depending on n and x by a big amount (> 100) of examples (how long the algorithm will take for n and x).
Is there ...
0
votes
3answers
75 views
Binary Tree arraly list represenation
I have been doing some research on Binary trees, and the array list representation. I am struggling to understand that the worst case space complexity is O(2^n). Specifically, the book states, the ...
1
vote
1answer
167 views
Find Closed End Formula for Recurrence equation by master theorem
Can we solve this
T(n) = 2T( n/2 ) + n lg n recurrence equation master theorem I am coming from a link where he is stating that we can't apply here master theorem because it doesn't satisfied ...
3
votes
2answers
216 views
How to add Big O and Big omega
If an algorithm has two sub algorithm, when it is best case for sub algorithm A1 to the given input, it is the worst case for sub algorithm A2. How could I find the overall algorithm complexity?
...
4
votes
3answers
337 views
Complexity of a double for loop
I am trying to figure out the complexity of a for loop using Big O notation. I have done this before in my other classes, but this one is more rigorous than the others because it is on the actual ...
-2
votes
1answer
147 views
Efficiency in Imperative programming and Functional programming [closed]
I have a question about the performance of IP and FP.
Let's say I have a function to compute nth Fibonacci number.
In imperative programming I have a choice to computing the nth Fibonacci number ...
0
votes
2answers
202 views
Value of constants in Big Theta notation [closed]
In Big Theta notation, do the constants c1 and c2 differ for each value of n?.
Definition:
Theta(g(n)) = {f(n): there exist c1 >= 0, c2 > 0 and n0 > 0
such that for all ...
1
vote
2answers
461 views
Worst Case Performance of Quicksort
I am trying to prove the following worst-case scenario for the Quicksort algorithm but am having some trouble. Initially, we have an array of size n, where n = ij. The idea is that at every ...
0
votes
2answers
688 views
Compare Big O Notation
In n-element array sorting processing takes;
in X algorithm: 10-8n2 sec,
in Y algoritm 10-6n log2n sec,
in Z algoritm 10-5 sec.
My question is how do i compare them. For example for y works ...
1
vote
2answers
847 views
Running Time Complexity vs. Space Complexity in sorting
I'm pretty new to algorithms and I have some questions. Let's say I have a sorting algorithm that sorts data at O(n^2), running time complexity. This could be selection sort for example. Now, let's ...
0
votes
2answers
109 views
Regarding complexity of an algorithm with steps C(n+r-1, r-1)
If an algorithm requires
C(n+r-1, r-1) steps
to solve a problem, where n is the number of input,
and r is a constant,
does the steps of algorithm consider exponential growth?
0
votes
3answers
139 views
What's the asymptotic complexity of this pseudocode?
could you plese tell me the asymptotic complexity of this code?
f(n):
if (n<=2) then return 1;
else {
if (n>950) then { i=n/2; return f(i);}
else return f(n-2);
}
I have thought of ...
1
vote
2answers
307 views
Relationship between Asymptotic bounds and Running time?
Lets Take Binary search for instance, The best case running time would be obtained in First comparison when
key_to_find == (imin + imax) / 2;
And the best case running time would be represented ...
0
votes
1answer
294 views
time and space complexity
I have a doubt related with time and space complexity in following 2 case
Blockquote
Case I:
Recurion: Factorial calculation.
int fact(int n)
{
if(n==0)
return 1;
else
...
2
votes
1answer
517 views
Recurrence Relation T(n) = T(n^(1/2)) + T(n-n^(1/2)) + n
My friend and I have found this problem and we cannot figure out how to solve it. Its not trivial and standard substitution method does not really work(or we cannot apply it correctly) This should be ...
0
votes
3answers
269 views
Good Book for Asymptotic Analysis [closed]
I was looking for a good resource on Asymptotic Analysis. Now I am not looking for a book that tells me "the runtime of this algorithm is O(N)". I want to find a book that teaches me how to actually ...
6
votes
1answer
1k views
Hash Collision Linear Probing Running Time
I am trying to do homework with a friend and one question asks the average running time of search, add, and delete for the linear probing method. I think it's O(n) because it has to check at certain ...
7
votes
2answers
756 views
When do floors and ceilings matter while solving recurrences?
I came across places where floors and ceilings are neglected while solving recurrences.
Example from CLRS (chapter 4, pg.83) where floor is neglected:
Here (pg.2, exercise 4.1–1) is an example ...
0
votes
1answer
923 views
Complexity of Multi Stage graph
I was looking through "Fundamentals of Computer Algorithms" book for multi stage graph problem.
It says:
Algorithm Graph(G,k,n,p)
{
cost[n]=0;
for j=n-1 to 1 step -1 do
{
Let r be a vertex such ...
1
vote
1answer
132 views
Exotic functions, Pochhammer and red-black trees
Consider an initially empty RB-tree, which we insert m elements into.
Inserting an element takes O(log n) time, where n is the current number of elements inserted.
So I can write up the total time of ...
1
vote
2answers
259 views
Asymptotic Notation
This is a problem on Asymptotic Notation from the assignment of MIT OpenCourse Introduction to Algorithm:
For each of the following statements, decide whether it is always true, never true, or ...
1
vote
3answers
2k views
Merge sort worst case running time for lexicographic sorting?
A list of n strings each of length n is sorted into lexicographic order using the merge sort algorithm. The worst case running time of this computation is?
I got this question as a homework. I know ...
2
votes
2answers
361 views
Give an asymptotic upper bound on the height of an n-node binary search tree in which the average depth of a node is Θ(lg n)
Recently, I'm trying to solve all the exercises in CLRS. but there are some of them i can't figure out. Here is one of them, from CLRS exercise 12.4-2:
Describe a binary search tree on n nodes ...
-4
votes
3answers
367 views
What does 'log' represent in asymptotic notation?
I understand the principles of asymptotic notation, and I get what it means when something is O(1) or O(n2) for example. But what does O(log n) mean? or O(n log n) for example?



