选择排序(Selection sort)是一种简单直观的排序算法。 它的工作原理是:第一次从待排序的数据元素中选出最小(或最大)的一个元素,存放在序列的起始位置,然后再从剩余的未排序元素中寻找到最小(大)元素,然后放到已排序的序列的末尾。 以此类推,直到全部待排序的数据元素的个数为零。 选择排序是不稳定的排序方法。
以上为选择排序的定义。
仔细考虑一下,既然一次遍历过程中可以找出最小的或者最大的元素然后放在最前面,那么一定可以同时找到最小的和最大的元素,然后分别放在最前面和最后面,这就可以实现事半功倍的效果。
那么为什么没有人这么做呢?应该不是没有,而是尝试之后放弃了。尝试放弃的主要原因在于,找到最大和最小的元素出现的位置,以及交换元素的方式引发了错误,而且这种错误未经大量数据测试很难被发现。这些错误的逻辑被规整修正之后,算法就可以正常工作了。
以下代码可以将排序效率(时间上的,空间不变)提升可达60%,项目参见:
GitHub - yyl-20020115/DoubleSelectionSort: The improved selection sort algorithm
/// <summary>
/// Double Selection Sort Algorithm
/// Within single iteration, we get both max and min from the
/// searching range, and then swap the min with the element
/// before the range, and swap the max with the element after
/// the range. Therefore we can sort from both direction,
/// and get the double speed.
/// </summary>
void DoubleSelectionSort(int[] data)
{
if (data == null || data.Length <= 1)
{
return;
}
else if(data.Length == 2)
{
int min = Math.Min(data[0], data[1]);
int max = min == data[0] ? data[1] : data[0];
data[0] = min;
data[1] = max;
return;
}
int staIndex = 0;
int endIndex = data.Length - 1;
while (staIndex < endIndex)
{
int minIndex = staIndex;
int maxIndex = endIndex;
int staValue = data[staIndex];
int endValue = data[endIndex];
int minValue = data[minIndex];
int maxValue = data[maxIndex];
for (int j = staIndex; j <= endIndex; j++)
{
if (data[j] < minValue)
{
minValue = data[j];
minIndex = j;
}
if (data[j] > maxValue)
{
maxValue = data[j];
maxIndex = j;
}
}
if (minValue == maxValue)
{
break;
}
else if (maxIndex == staIndex
&& minIndex == endIndex)
{
data[staIndex] = minValue;
data[endIndex] = maxValue;
}
else if (maxIndex == staIndex)
{
data[staIndex] = minValue;
data[endIndex] = maxValue;
data[minIndex] = endValue;
}
else if (minIndex == endIndex)
{
data[staIndex] = minValue;
data[endIndex] = maxValue;
data[maxIndex] = staValue;
}
else
{
data[staIndex] = minValue;
data[endIndex] = maxValue;
data[minIndex] = staValue;
data[maxIndex] = endValue;
}
endIndex--;
staIndex++;
}
}
由于C/C++/Java等语言的版本和C#版本相差无几,其它语言版本请读者自己完成。