测试积点老人 发表于 2020-8-13 11:47:58

数据结构 直接排序,有错误,应该怎么改,急

```int Partition(SeqList &L,Student a[],int low,int high)
{
a=a;
char pivotkey=a.no;
while(low {
while(low=pivotkey) --high;
a=a;
while(low<high&&a.no<=pivotkey) ++low;
a=a;
}
a=a;
return low;
}

void QSort(SeqList &L,Student a[],int low,int high)
{
if(low<high){
int pivotloc=Partition(L,a,low,high);
QSort(L,a,low,pivotloc-1);
QSort(L,a,pivotloc+1,high);
}
}
void QuickSort(SeqList &L)
{

Student a;//排序专用临时数组
   for(int i=1;i<=L.last;i++)
       a=L.elem;
    QSort(L,a,1,L.last);
    for(i=1;i<L.last;i++)
{
   printf("学号:%s 姓名:%s 成绩:%d\n\n",L.elem.no,L.elem.name,L.elem.price);
}
printf("\n");

}

海海豚 发表于 2020-8-14 10:22:29

https://ask.csdn.net/questions/1084998参考下

bellas 发表于 2020-8-14 10:53:27

参考下这个链接https://zhidao.baidu.com/question/101879710.html

郭小贱 发表于 2020-8-14 13:56:46

while(low {
while(low=pivotkey) --high;
代码错乱了

int pivotloc=Partition(L,a,low,high);
这里调试下,分区是否正确

for(int i=1;i<=L.last;i++)
数组下标从0开始
页: [1]
查看完整版本: 数据结构 直接排序,有错误,应该怎么改,急