14. Suppose you are given an array containing six integers 1, 2, 3, 4, 5, and 6 initially. You want
to sort the array in increasing order. Which sorting method is the most efficient to use?
(A)
selectionsort;
(B) insertionsort;
(C)mergesort;
(D) quicksort.