Tagged Questions

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.
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
1answer
611 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 ...
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
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 ...
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
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
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
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
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: ...
-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 ...