MCC


私信TA

用户名:dotcpp0652996

访问量:2090

签 名:

等  级
排  名 377
经  验 5166
参赛次数 0
文章发表 8
年  龄 0
在职情况 学生
学  校 GDUT
专  业

  自我简介:

//C语言融合部分c++头文件,提交格式为c++
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
struct S {
	char name[20];
	int score;
};
int main(void) {
	int n;
	scanf("%d", &n);

	S* s = (S*)malloc(sizeof(S) * (n + 1));
	for (int i = 1; i <= n; i++) {
		scanf("%s", s[i].name, sizeof(s[i].name));
		scanf("%d", &s[i].score);
		
		int end = i - 1;
		S stu = s[i];
		while (end >= 1) {
			if (stu.score > s[end].score) {
				s[end + 1] = s[end];
				end--;
			}
			else if (stu.score == s[end].score) {
				if (strcmp(stu.name, s[end].name) < 0) {
					s[end + 1] = s[end];
					end--;
				} else 
				break;
			}
			else
				break;
		}
		s[end + 1] = stu;
	}

	for (int i = 1; i <= n; i++)
		printf("%s %d\n", s[i].name, s[i].score);

	return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »