Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

92
votes
12answers
7k views

Throwing cats out of windows

Imagine you're in a tall building with a cat. The cat can survive a fall out of a low story window, but will die if thrown from a high floor. How can you figure out the longest drop that the cat can ...
33
votes
13answers
2k views

How can I find a number which occurs an odd number of times in a SORTED array in O(n) time?

I have a question and I tried to think over it again and again... but got nothing so posting the question here. Maybe I could get some view-point of others, to try and make it work... The question ...
21
votes
13answers
2k views

Example of O(n!)?

What is an example (in code) of a O(n!) function? It should take appropriate number of operations to run in reference to n; that is, I'm asking about time complexity.
12
votes
4answers
2k views

Asymptotic complexity of .NET collection classes

Are there any resources about the asymptotic complexity (big-O and the rest) of methods of .NET collection classes (Dictionary<K,V>, List<T> etc...)? I know that the C5 library's ...
4
votes
3answers
50 views

Multiplying and adding different asymptotioc notations

does anyone knows how to perform such calculations Example: O(n^2) + THETA(n) + OMEGA(n^3) = ? or O(n^2) * THETA(n) * OMEGA(n^3) = ? In general, how to add and multiply different asymptotic ...
4
votes
4answers
76 views

Division operation on asymptotic notation

Suppose S(n) = Big-Oh(f(n)) & T(n) = Big-Oh(f(n)) both f(n) identically belongs from the same class. My ques is: Why S(n)/T(n) = Big-Oh(1) is incorrect?
4
votes
1answer
613 views

What are the asymptotic upper and lower bounds for T(n) = 2T(n/2) + n lg lg n?

The recurrence relation T(n) = 2T(n/2) + n lg lg n (where lg is logarithm to base 2) can be solved using the master theorem but I am not very sure about the answer. I have found my answer but am ...
4
votes
4answers
333 views

Fundamentals and maths required for algorithms

I have been working on RTOS and Linux driver development for quite some time. Now I am interviewing at semiconductor companies and failing to answer questions about algorithms on strings, and time ...
4
votes
1answer
711 views

Solving recurrences

Am trying to solve the given recursion, using recursion tree, T(n) = 3T(n/3) + n/lg n. In the first level (n/3)/(log(n/3)) + (n/3)/(log(n/3)) + (n/3)/(log(n/3)) = n/(log(n/3)). In the second level ...
3
votes
4answers
115 views

Big-O Notation, Find the Smallest

Give the smallest O() estimate you can for the following functions: 4n2 + 5n – 8 = O(...) log(n)2 + n = O(...) If you guys can, explain the answer rather than giving it to me. A question like ...
3
votes
6answers
503 views

Big O Notation question

If I have an algorithm that takes 4n^2 + 7n moves to accomplish, what is it's O? O(4n^2)? O(n^2)? I know that 7n is cut off, but I don't know if I should keep n^2 coefficient or not. Thanks
2
votes
1answer
179 views

The Recurrence T(n)= 2T(n/2) + (n-1)

I have this recurrence: T(n)= 2T(n/2) + (n-1) My try is as follow: the tree is like this: T(n) = 2T(n/2) + (n-1) T(n/2) = 2T(n/4) + ((n/2)-1) T(n/4) = 2T(n/8) + ((n/4)-1) ... the hight of the ...
2
votes
4answers
91 views

Question about big O and big Omega

I think this is probably a beginner question about big-O notation. Say, for example, I have an algorithm that breaks apart an entire list recursively(O(n)) and then puts it back together (O(n)). I ...
2
votes
3answers
168 views

Big Oh notation (how to write a sentence)

I had a test about asymptotic notations and there was a question: Consider the following: O(o(f(n)) = o(f(n)) Write in words the meaning of the statement, using conventions from asymptotic ...
2
votes
4answers
84 views

efficiency of the closest pair algorithm

In T(n) = 2T(n/2) + M(n), where does the 2 in front of T come from. n/2 because it is dividing, and M(n) is linear, but I can't figure out what the 2 is for?
2
votes
2answers
233 views

Asymptotic analysis question: sum[log(i)*i^3, {i, n}] is big-theta (log(n)*n^4)

I've got a homework question that's been puzzling me. It asks that you prove that the function Sum[log(i)*i^3, {i, n}) (ie. the sum of log(i)*i^3 from i=1 to n) is big-theta (log(n)*n^4). I know that ...
2
votes
4answers
219 views

Big-Oh, Concequence of a Definition

I have spent a lot of time reading questions and answers about Big-Oh on both here and math.stackexchange and seems that this is the best place for it as math.stackexchange don't seem to like ...
2
votes
1answer
670 views

In Asymptotic Analysis, Show That :- O( f(n) + g(n) ) = O( max{ f(n) , g(n) } ) [closed]

O represents Big-O. O(g) : { f| f is non negative function              there exists c,m where c and m are any constants ...
2
votes
2answers
191 views

np-complete but not “hard” [closed]

Is there some language that is NP-complete but for which we know some "quick" algorithm? I don't mean like the ones for knapsack where we can do well on average, I mean that even in the worst case ...
1
vote
2answers
53 views

Asymptotic time complexity of inserting n elements to a binary heap already containing n elements

Suppose we have a binary heap of n elements and wish to insert n more elements(not necessarily one after other). What would be the total time required for this? I think it's theta (n logn) as one ...
1
vote
2answers
34 views

Runtime of this pseudocode

Can anyone help me analyze the run time of the following pseudocode for(i = 0; i < n*n*n; i++) for(j = i; j < n; j++) x++ The way I see it's omega(n^3) for the lower bound, since ...
1
vote
3answers
105 views

asymptotic tight bound for quadratic functions

In CLRS (Introduction to Algorithms by Cormen, Leiserson, Rivest, and Stein), for a function f(n) = an2 + bn + c they said Suppose we take the constants c1 = a/4, c2 = 7a/4, and n0 = ...
1
vote
2answers
252 views

Top K smallest selection algorithm - O (n + k log n) vs O (n log k) for k << N

I'm asking this in regards to Top K algorithm. I'd think that O(n + k log n) should be faster, because well.. for instance if you try plugging in k = 300 and n = 100000000 for example, we can see that ...
1
vote
3answers
151 views

<= vs < when proving big-o notation

We just started learning big-o in class. I understand the general concept that f(x) is big-o of g(x) if there exists two constants c,k such that for all x>k |f(x)|<=c|g(x)|. I had a question ...
1
vote
4answers
315 views

Worst case vs O(n)

Is there a difference between statement "Worst case running time of an Algorithm A" and "Running time of an Algorithm A is O(n)"? What I think "there is no difference" because, worst case is the peak ...
1
vote
1answer
387 views

Function which is Big O(1) but not Ω(1)

Can some help me with a function which is Big O(1) but not Ω(1) and the other way around? Some explanation would greatly help.
1
vote
2answers
103 views

C++ Asymptotic Profiling

I have a performance issue where I suspect one standard C library function is taking too long and causing my entire system (suite of processes) to basically "hiccup". Sure enough if I comment out the ...
1
vote
2answers
1k views

Proving that a function f(n) belongs to a Big-Theta(g(n))

Its a exercise that ask to indicate the class Big-Theta(g(n)) the functions belongs to and to prove the assertion. In this case f(n) = (n^2+1)^10 By definition f(n) E Big-Theta(g(n)) <=> c1*g(n) ...
1
vote
1answer
59 views

Asymptotic complexity of a compiler

What is the maximal acceptable asymptotic runtime of a general-purpose compiler? For clarification: The complexity of compilation process itself, not of the compiled program. Depending on the program ...
1
vote
1answer
484 views

Mergesort to sort three input arrays

A Merge algorithm merges two sorted input arrays into a sorted output array, by repeatedly comparing the smallest elements of the two input arrays, and moving the smaller one of the two to the output. ...
1
vote
4answers
1k views

Asymptotic Notation - does n (log n) (log n) simplify?

If I have an algorithm that takes n log n steps (e.g. heapsort), where the steps take log n time (e.g. comparison/exchange of "big" integers in the range 0 to n-1), what is the asymptotic bound for ...
0
votes
3answers
29 views

Big O in an exponent

What in exact formal manner does the next expression mean: f(n)=2^O(n) ?
0
votes
1answer
52 views

The fastest algorithm to find the largest span (i,j) such that , ai + ai+1 +…+aj = bi + bi+1 +…+bj in arrays a and b

I encountered this problem while preparing for my exams. Given two arrays of numbers a1,..., an and b1,....,bn where each number is 0 or 1, the fastest algorithm to find the largest span (i,j) such ...
0
votes
0answers
67 views

Find Asymptotic Upper and Lower Bounds of T(n) = nT(n/2)^2 [closed]

I am thinking that it might require substitution to get rid of the power of 2 on the right side but it did not work when I substitute 2^i = n^2. Appreciate any help Many Thanks
0
votes
4answers
83 views

Asymptotic Complexity of Logarithms and Powers

So, clearly, log(n) is O(n). But, what about (log(n))^2? What about sqrt(n) or log(n)--what bounds what? There's a family of comparisons like this: n^a versus (log(n))^b I run into these ...
0
votes
3answers
52 views

Alorithmic complexity of recursive function

Here is my function. It is a simple one, I'm just not confident on what the answer is. int calcul( int n) { if(n=1) return 1; else return calcul(n/2) + 1; } Now, to get the ...
0
votes
0answers
24 views

Determining n0 in asymptotic complexity

The number of operations executed by algorithms A and B is 10nlogn and 2n^2, respectively. Determine n0 such that A is better than B for n ≥ n0 In this question, we have to find n0 as 10 n ...
0
votes
1answer
82 views

Asymptotic comparison of functions

I want to compare following functions asymptotically and then arrange them in the ascending order .Could some one help me out.Also requested is a proper explanation lg((√n)!), lg(SquareRoot(n!)), ...
0
votes
1answer
213 views

Big O notation for exponential and logarithmic complexity

There are a lot of questions about big O notation, but I didn't found clear answer for this question. We write that: O(5n) = O(n) and O(3n^2 + n + 2) = O(n^2) Can we write that: O(2^(2n)) = O(2^n)? ...
0
votes
2answers
102 views

What is the time complexity for inserting n elements in a stack using a linked list?

Each insertion in a stack is O(1) so is the time taken to insert 'n' elements O(n) ? Can we speak similarly for a hash-table as well ? In average case the time taken to insert 'n' elements in a hash ...
0
votes
2answers
89 views

Adding a log in asymptotic analysis

Have a problem I'm trying to work through and would very much appreciate some assistance! What's the time complexity of... for (int j = 1 to n) { k = j; while (k < n) { sum += a[k] ...
0
votes
1answer
283 views

T(n) = T(n/2) + T(n/4) + O(1), what is T(n)?

What is the answer? And how to solve this recurrence? It doesn't seem like Master Method will help, as this is not in the form of T(n) = aT(n/b) + f(n). And I got stuck for quite a while. Thank you! ...
0
votes
5answers
236 views

Is O(N!), O(N) or O(N square)? [closed]

Just a simple curiosity. How do you translate O(N!)? O(N) or O(N square)?
0
votes
2answers
192 views

time complexity of an algorithm

An algorith with size n=100 takes 21 seconds to run. With size n=1000 it takes 31 seconds and with n=10000 takes 41 seconds to run. What is the running complexity? If I try O(n) Then: ...
0
votes
1answer
154 views

Measuring complexity for powering a number

I implemented a program for powering a number (a^n) using the divide and conquer technique. i implemented two versions of the same problem: Version 1: def input_params(): a=input('Input \'a\' ...
0
votes
1answer
94 views

Complexity proof

I would to prove the following example: n^k = O (c^n) for every k and c>1 It is noticeable that the polynomial function grows faster than exponential function. We try to find k0 > 0 satisfying ...
0
votes
1answer
137 views

Help with asymptotic analysis

I'm rather new to programming and have recently been introduced to the topic of asymptotic complexity. What I'm curious about is how to figure out the asymptotic complexity of a sorting method, given ...
0
votes
1answer
1k views

Determining time and space complexity

I am having some trouble determining space and time complexities. For example, if I have a tree that has a branching factor b and will have at most a depth d, how can I calculate the time and space ...
-1
votes
2answers
46 views

Object oriented programming and asymptotic run-time

Are some ways of structuring a class hierarchy more efficient than others? Is there a way to measure this? How do design patterns factor in to computational complexity? Am I just thinking about this ...
-2
votes
1answer
111 views

Give both an exact and asymptotic answer for the pseudo code below

for i <--- 1 step i <--- 2* i while i< n do for j <--- 1 step j <---2* j while j<n do if j = 2*i for k = 0 step k <--- k+ 1 while k < n do .... CONSTANT ...