edited by
624 views

1 Answer

0 votes
0 votes
  quick sort merge sort selection sort insertion sort heap sort
worst case O($n^{2}$) $O(nlogn)$ O($n^{2}$) O($n^{2}$) O(nlogn)

so, tightest lower bound is O(nlogn)

Related questions

2 votes
2 votes
1 answer
1
smsubham asked Jan 6, 2018
990 views
4 votes
4 votes
4 answers
2
Aibi asked Oct 8, 2017
2,618 views
Consider bottom-up merge sort working on 'n' elements. Assume 'n' is a power of 2. The minimum number of comparisons in order to get sorted list is(A) (n log n) / 2(B) n ...
0 votes
0 votes
1 answer
3