Open In App

Algorithms | Sorting | Question 6

Consider a situation where swap operation is very costly. Which of the following sorting algorithms should be preferred so that the number of swap operations are minimized in general?

(A)



Heap Sort

(B)



Selection Sort

(C)

Insertion Sort

(D)

Merge Sort


Answer: (B)
Explanation:

Selection sort makes O(n) swaps which is the minimum among all sorting algorithms mentioned above.

Hence Option(B) is the correct answer.

Quiz of this Question
Please comment below if you find anything wrong in the above post

Article Tags :