Computer Science, asked by nanduchowdarynbk9999, 7 months ago

Choose the correct option.
Consider the given list of sorting algorithms-
7. Selection Sort
2. Radix Sort
3. Shell Sort
4. Heap Sort
Which of the above mentioned algorithms uses the selection method
sorting?​

Answers

Answered by ss5659961
8

Answer:

4 is the correct answer

Explanation:

please mark me in brainlist and follow me

Answered by anjaliom1122
0

Answer:

Selection Sort algorithms uses the selection method sorting.

Explanation:

A sort algorithm that searches the remaining items repeatedly for the smallest one and moves it to its final location. (n2) is the run time, where n is the number of elements. The total number of swaps is O. (n).

The Selection Sort concept allows us to partially sort an array up to the kth smallest (or largest) element in order to find the kth smallest (or largest) element in an array. As a result, a partial selection sort produces a simple selection algorithm that sorts the array in O(k*n) time.

Selection sort is a straightforward sorting algorithm. This sorting algorithm is an in-place comparison-based algorithm that divides the list into two parts, the sorted part on the left end and the unsorted part on the right. Initially, the sorted section is empty, and the unsorted section contains the entire list.

Similar questions