edited by
1,035 views
0 votes
0 votes
Which of the following sorting techniques have best time complexity, if complexity is measured in terms of number of comparison?

 

A Insertion sort

B Selection sort

C Merge sort

D QuickSort
edited by

2 Answers

0 votes
0 votes

In worst case input merge sort is better.

Related questions

0 votes
0 votes
0 answers
2
Abhishek Kumar 38 asked Dec 19, 2018
625 views
Which of the following sorting algorithm represented by above code?
0 votes
0 votes
2 answers
4
Somoshree Datta 5 asked Oct 20, 2018
1,634 views
Consider the following scenario during insertion sort when the array looks like the following:{25,75,95,125,80,5,10}The number of comparisons that it will further take fo...