测试积点老人 发表于 2020-8-14 10:56:55

一个快速排序,有错误,应该怎么改啊,感谢指正

#include
#include
#include
#define MAXSIZE 100

typedef struct Student{
char no;// 学号
char name;// 姓名
int price;// 成绩
}Student;
int sum=0;

typedef struct{
Student elem;//线性表占用的数组空间
int last;//最后一个元素的下标
}SeqList;

//快速排序(学号)

int Partition(SeqList &L,Student a[],int low,int high)
{
a=a;
int 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(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)
{
if(L.last<1)
{
printf("空表!");
}
Student a;//排序专用临时数组
for(int i=1;i<=L.last;i++)
a=L.elem;
QSort(L.elem,1,L.last);
for(i=0;i<L.last;i++)
{
printf("学号:%s 姓名:%s 成绩:%d\n\n",L.elem.no,L.elem.name,L.elem.price);
}
printf("\n");
}

Miss_love 发表于 2020-8-17 08:33:50

支持一下
页: [1]
查看完整版本: 一个快速排序,有错误,应该怎么改啊,感谢指正