摘要:
【数据结构期末速成课 期末突击课 不挂科-哔哩哔哩】 https://b23.tv/dEzeaRD 阅读全文
摘要:
文件复位 将文件指针复位的2种方法 第一种 rewind(fp); 第二种 fseek(fp,0L,SEEK_SET) 起始点 表示符号 数字表示 文件首 SEEK—SET 0 当前位置 SEEK—CUR 1 文件末尾 SEEK—END 2 例如:fseek(fp,100L,0);其意义是把位置 指 阅读全文
摘要:
#include<stdio.h> #include<stdlib.h> #include<string.h> #include<ctype.h> #define inf 0x3f3f3f typedef struct { char id[50]; char name[50]; char gende 阅读全文
摘要:
一篇足够 阅读全文
摘要:
Description 数据结构与算法实验题 Sins of a Solar EmpireP6 ★实验任务 正如你所知道的s_sin是一个贪玩的不得了的小P孩QAQ,你也知道他最近很喜欢玩一个叫做太阳帝国的原罪的策略游戏去年 他已经和疯狂的AI交战了整整一年。而现在,战斗的序幕又要拉开了。 在某个星 阅读全文
摘要:
#include<iostream> #include<cstring> #include<algorithm> #include<queue> using namespace std; typedef pair<int, int>PII; const int N = 110; int n, m; 阅读全文