将10个成绩排序java程序_快速排序——成绩排序

这篇博客介绍了如何使用Java实现快速排序算法,对包含学生姓名、年龄和成绩的数据进行排序。通过示例代码展示了快速排序的过程,包括主函数、快速排序函数和分区函数的详细实现。
摘要由CSDN通过智能技术生成

bcd 19 97

bed 20 97

abc 20 99

之前老是用冒泡排序,感觉方便,写了篇快速排序之后,咱也得用起来,上AC代码

#include

#include

#include

struct student{

char name[101];

int age;

int grade;

};

int partition(struct student *A, int left, int right);

void quicksort(struct student *A, int begin, int end);

int main()

{

struct student students[1001];

int i, n;

while(scanf("%d",&n) != EOF)

{

//学生成绩赋值

for(i = 0; i < n; i ++)

{

scanf("%s%d%d",students[i].name, &students[i].age, &students[i].grade);

}

//快速排序

quicksort(students, 0, n-1);

//打印输出

for(i = 0; i < n; i ++)

{

printf("%s %d %d\n",students[i].name, students[i].age, students[i].grade);

}

}

return 0;

}

void quicksort(struct student *A, int begin, int end)

{

int pivot;

if(begin < end)

{

pivot = partition(A, begin, end);

quicksort(A, begin, pivot - 1);

quicksort(A, pivot + 1, end);

}

}

int partition(struct student *A, int left, int right)

{

struct student stand = A[left];

while(left < right)

{

while(left < right && (A[right].grade > stand.grade || (A[right].grade == stand.grade && strcmp(A[right].name,stand.name) > 0) || (A[right].grade == stand.grade && strcmp(A[right].name,stand.name) == 0 && A[right].age > stand.age ) ) )

{

right --;

}

if(left < right)

{

A[left ++] = A[right];

}

while(left < right && (A[left].grade < stand.grade || (A[left].grade == stand.grade && strcmp(A[left].name,stand.name) < 0) || (A[left].grade == stand.grade && strcmp(A[left].name,stand.name) == 0 && A[left].age < stand.age ) ) )

{

left ++;

}

if(left < right)

{

A[right --] = A[left];

}

}

A[left] = stand;

return left;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值