What sorting algorithm is implemented by the following function?
void sort(int arr[])
{
int n = arr.length;
for (int i = 0; i < n-1; i++)
{
int min_idx = i;
for (int j = i+1; j < n; j++)
if (arr[j] < arr[min_idx])
min_idx = j;
int temp = arr[min_idx];
arr[min_idx] = arr[i];
arr[i] = temp;
}
}
a. Selection sort.
b. Bubble Sort.
c. Quick sort.
d. Merge Sort.
a. Selection sort.
Selection sort divides the input list into two parts: the sublist of items already sorted (built up from left to right at the front (left) of the list) and the sublist of items remaining to be sorted (that occupy the rest of the list). Initially, the sorted sublist is empty and the unsorted sublist is the entire input list. The algorithm proceeds by finding the smallest (or largest, depending on sorting order) element in the unsorted sublist, exchanging (swapping) it with the leftmost unsorted element (putting it in sorted order), and moving the sublist boundaries one element to the right.
You might also like to view...
SimplyHired and SnagAJob are examples of social networking sites
Indicate whether the statement is true or false
A modifying symbol is placed directly before the element it modifies.
Answer the following statement true (T) or false (F)