0
votes
2answers
62 views

Is it true or false that, for any algorithm, its average-case performance is always better than the worst-case performance asymptotically

I'd like to think this is true, but I'm not too confident in that answer. Is there an algorithm that has an equal running time in the both the average and worst case. I'm not sure if the answer would ...
2
votes
1answer
133 views

The time complexity of counting sort

I am taking an algorithms course and there I saw that the time complexity of counting sort is O(n+k) where k is the range of numbers and n is the input size. My question is, when the difference ...
1
vote
0answers
32 views

lower bound for matrix sorting?

consider the problem of sorting a n x n matrix i.e. the rows and columns are in ascending order. I want to find the lower and upper bound of this problem. I found that it is O(n^2logn) by just ...
1
vote
2answers
182 views

Calculating complexity?

I've been trying to calculate the complexity of the following function: k=n; while(k>0) g(n); k=k/2; {Comment: this is integer division, so 1/2=0} end while; for(j=0;j<m;j++) f(m); ...
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. ...