Tagged Questions

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
1answer
609 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 ...
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
177 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
2answers
231 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 ...
1
vote
3answers
150 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
1answer
386 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.
0
votes
4answers
82 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
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
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 ...