Asymptotic complexity is an approximation of the edge case performance of an algorithm used to determine best and worst case scenarios.
14
votes
4answers
3k 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 ...
119
votes
14answers
9k 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 ...
26
votes
13answers
3k 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.
6
votes
2answers
541 views
Big-O running time of various search algorithms [closed]
The method hasTwoTrueValues return true if at least two values in an array of boolean are true. Provide the Big-O running time for all three implementations proposed.
// Version 1
public boolean ...
2
votes
1answer
197 views
asymptotic time complexity of scheme functions
I am trying to teach myself scheme and the concept I am struggling with the most is space and time complexity. I was doing some of the exercises at the end of the chapter and I have not been able to ...
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
4answers
892 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 ...
36
votes
13answers
3k 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 ...
3
votes
2answers
3k 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 ...
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;
...
2
votes
4answers
239 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 ...
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 ...
0
votes
1answer
475 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!)), ...

