Tagged Questions
0
votes
1answer
53 views
Is this generalization of Big-Theta notation correct?
Say you have an algorithm that completes in a polynomial number of steps for the input of size n, like, for example, P(n)=2n^2+4n+3. The asymptotic tight bound for this algorithm Θ(n^2).
Is it true ...
0
votes
2answers
75 views
Asymptotic Expected Running Time
I'm having some trouble with an asymptotic analysis question. The problem asks for both the asymptotic worst case running time and the asymptotic expected running time of a function. Random(n) ...
-1
votes
2answers
2k views
Time complexity, binary (search) tree
assume I have a complete binary tree up-to a certain depth d. What would the time complexity be to traverse (pre-order traversal) this tree.
I am confused because I know that the amount of nodes in ...
-2
votes
1answer
142 views
Efficiency in Imperative programming and Functional programming [closed]
I have a question about the performance of IP and FP.
Let's say I have a function to compute nth Fibonacci number.
In imperative programming I have a choice to computing the nth Fibonacci number ...
1
vote
2answers
131 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
1answer
2k 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.
...
