#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e5 + 10;
int n, c;
struct student{
char num[10];
char name[10];
int grade;
}stu[maxn];
void heapAjust(int head, int tail, bool (*cmp)(student, student)){
student value = stu[head];
int l = 2*head, r = 2*head+1;
int id;//较大的孩子
while(l<=tail){
if(r<=tail &&
数据结构实验 7-22 模拟EXCEL排序 (25分)
最新推荐文章于 2024-04-03 04:34:03 发布