Computer Science, asked by 1905307, 1 month ago

Which of the following sorting algorithms in its typical implementation gives best performance when applied on an array which is sorted, or almost sorted (at most
two elements are misplaced).
A. Quick Sort B. Heap Sort C. Merge Sort D. Insertion Sort

Answers

Answered by himankrao2012
2

Answer:

Insertion sort takes linear time when input array is sorted or almost sorted (maximum 1 or 2 elements are misplaced). All other sorting algorithms mentioned above will take more than lienear time in their typical implementation.

Answered by ananyanayak321
0

Answer:

insertion sort

Explanation:

Insertion sort takes linear time when input array is sorted or almost sorted (maximum 1 or 2 elements are misplaced). All other sorting algorithms mentioned above will take more than lienear time in their typical implementation.

Similar questions