摘要:
// 1028. List Sorting.cpp: 主项目文件。 #include "stdafx.h"
#include #include #include using namespace std; const int N=100003;
typedef struct Stu{ char id[7],name[9]; int score;
}Stu;
Stu stu[N];
int version; bool cmp(Stu m1,Stu m2){ if(version==1) return strcmp(m1.id,m2.id)<0; else if(versi 阅读全文
posted @ 2013-03-13 23:52
cjweffort
阅读(124)
评论(0)
推荐(0)