11 2020 档案
摘要:1 #include <iostream> 2 #include <stdio.h> 3 #include <time.h> 4 #include "head.h" 5 using namespace std; 6 //realize headSort 7 const int maxn=1000;
阅读全文
摘要:参考链接:https://www.cnblogs.com/blogxjc/p/11287961.html,https://www.cnblogs.com/Roni-i/p/8586332.html,https://www.cnblogs.com/lanhaicode/p/10776166.html
阅读全文
摘要:输出格式:排名 科目代号(优先按照排 #include <iostream> #include <algorithm> #include <vector> using namespace std; const int INF = 0x3fffffff; int n,f; struct student
阅读全文
摘要:1 #include <iostream> 2 #include <cstdio> 3 #include <cmath> 4 5 void betAns(char c[], int n,int index); 6 int main() { 7 //std::cout << "Hello, World
阅读全文
摘要:#include <cstdio> #include <cstring> #include <cctype> #include <algorithm> using namespace std; typedef long long LL; struct bign { int len; int d[30
阅读全文
摘要:#include <stdio.h> #include <stdlib.h> struct node {//链表结点类型,包含一个存放整型数据的 data 成员,和一个指向下一个结点的next成员 int data ; struct node *next ; }; struct node *mycr
阅读全文