 |
The selection sort is a combination of searching and
sorting.
During each pass, the unsorted element with the smallest (or largest)
value is moved to its proper position in the array.
The number of times the sort passes through the array is one less than the number of items in the
array. In the selection sort, the inner loop finds the next smallest (or largest) value
and the outer loop places that value into its proper location.
Let's look at our same table of elements using a selection sort for descending order.
Remember, a "pass" is defined as one full trip through the array
comparing and if necessary, swapping elements. |
| Array at beginning: |
84 |
69 |
76 |
86 |
94 |
91 |
| After Pass #1: |
84 |
91 |
76 |
86 |
94 |
69 |
| After Pass #2: |
84 |
91 |
94 |
86 |
76 |
69 |
| After Pass #3: |
86 |
91 |
94 |
84 |
76 |
69 |
| After Pass #4: |
94 |
91 |
86 |
84 |
76 |
69 |
| After Pass #5 (done): |
94 |
91 |
86 |
84 |
76 |
69 |
While being an easy sort to program, the selection sort is one
of the least efficient. The algorithm offers no way to end the sort early,
even if it begins with an already sorted list.
// Selection Sort Function for Descending Order
void selection_sort(apvector <int> &array)
{
int i, j, first, temp;
int array_size = array.length( );
for (i= array_size - 1; i > 0; i--)
{
first = 0;
// initialize first to the subscript of the first element
for (j=1; j<=i; j++)
//Find smallest element between the positions 1 and i.
{
if (array[j] < array[first])
first = j;
}
temp = array[first];
// Swap smallest element found with one in position i.
array[first] = array[i];
array[i] = temp;
}
return;
}
|