Computer Science, asked by selwynjebasingh1817, 8 months ago

how many loop for array {13,16,11,18,14,15} in selection sort

Answers

Answered by ʙᴇᴀᴜᴛʏᴀɴɢᴇʟ
20

Explanation:

The selection sort algorithm sorts an array by repeatedly finding the minimum element (considering ascending order) from unsorted part and putting it at the beginning. The algorithm maintains two subarrays in a given array.

1) The subarray which is already sorted.

2) Remaining subarray which is unsorted.

In every iteration of selection sort, the minimum element (considering ascending order) from the unsorted subarray is picked and moved to the sorted subarray.

Similar questions