Tagged Questions

5
votes
1answer
481 views

Prove running time of optimized mergesort is theta(NK + Nlog(N/K))?

Okay, I know Mergesort has a worst case time of theta(NlogN) but its overhead is high and manifests near the bottom of the recursion tree where the merges are made. Someone proposed that we stop the ...
3
votes
3answers
535 views

How can I implement this equation in Java?

OK, this is more of a follow-up question: How to compute optimal paths for traveling salesman bitonic tour? First of all, for the bitonic tour of the traveling salesman problem I have the following ...