选择从最小和最大两端排序

时间:2017-01-15 22:51:23

标签: c++ selection-sort

我想知道为什么这段代码没有输出正确的数字序列(升序)。它取自这一材料 - Upgraded Selection Sort。例如,当我插入像这样的数组值 - [8,5,6,1,4,7,3,0,2,9]它返回 - [0,1,3,4,5,7,8, 6,2,9]。

#include<iostream>
using namespace std;

void Swap(int Arr[100],int Temp_min,int Temp_max)
{
    int temp;
    temp = Arr[Temp_min];
    Arr[Temp_min] = Arr[Temp_max];
    Arr[Temp_max] =temp;
}

void OptimizedSelectSort(int Arr[],int n)
{
    int i,j,min,max;

    for(i=0;i<n/2;i++)
    {
        min = i;
        max = i;
        for(j=i+1;j<n-i;j++)
        {
            if (Arr[j]> Arr[max])
            {
                max = j;
            }
            else if (Arr[j]< Arr[min])
            {
                min = j;
            }
        }
        if (i == max && n-1-i == min)
        {
            Swap(Arr,min,max);
        }
        else
        {
            if ((min == n-1-i) && (max != i))
            {
                Swap(Arr,i,min);
                Swap(Arr,n-1-i,max);
            }
            else if ((max == i) && (min != n-1-i))
            {
                Swap(Arr,n-1-i,max);
                Swap(Arr,i,min);
            }
            else
            {
                if(min != i)
                {
                    Swap(Arr,i,min);
                }
                else if(max!= n-1-i)
                {
                    Swap(Arr,max,n-1-i);
                }
            }
        }
    }
}

int main()
{
    int n;
    cout<<"Enter the size of array"<<endl;
    cin>>n;
    int * Mas;
    Mas = new int [n];
    int i;
    cout<<"Enter the elements"<<endl;
    for(i=0;i<n;i++)
    {
        cin>>Mas[i];
    }
    OptimizedSelectSort(Mas, n);
    cout<<"Sakartots saraksts:";

    for(i=0;i<n;i++)
    {
        cout<<Mas[i]<<" ";
    }
}

2 个答案:

答案 0 :(得分:0)

在for循环i中,我会提出:

  min = i;
  max = n-i-1;

在OptimizedSelectSort结束时:

if (min != i)
{
    Swap(Arr, i, min);
}
//no else here
if (max != n - 1 - i)
{
    Swap(Arr, max, n - 1 - i);
}

答案 1 :(得分:0)

在本文中发表的伪代码中似乎存在拼写错误。在最后一部分:

  

其他if(max!= n-1-i)

只需删除else

这对应于(更好)作者对算法描述的5.i和5.ii部分。