-1
votes
1answer
90 views

Asymptotic runtimes of InsertionSort and FingerTreeSort

I've searched high and low in my book aswell as several sites on the internet, but I'm just not entirely sure about my answers. I need to give asymptotic runtimes of InsertionSort and FingerTreeSort ...
0
votes
2answers
75 views

An Example for Non-Monotone Worst-Case Complexity

Is somebody aware of a natural program or algorithm that has a non-monotone worst-case behavior? By non-monotone worst-case behavior I mean that there is a natural number n such that the worst-case ...
1
vote
1answer
182 views

dynamic programming - what's the asymptotic runtime?

I'm teaching myself dynamic programming. It's almost magical. But seriously. Anyway, the problem I worked out was : Given a stairs of N steps and a child who can either take 1, 2, or 3 steps at a ...
1
vote
2answers
156 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 ...
2
votes
2answers
229 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 ...