摘要: 【数据结构期末速成课 期末突击课 不挂科-哔哩哔哩】 https://b23.tv/dEzeaRD 阅读全文
posted @ 2024-12-11 09:46 某朝 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 练习题 阅读全文
posted @ 2024-12-06 22:14 某朝 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 【递归树求时间复杂度-哔哩哔哩】 https://b23.tv/smeBKsf 阅读全文
posted @ 2024-12-06 21:04 某朝 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 双端口存储器 阅读全文
posted @ 2024-12-04 21:27 某朝 阅读(2) 评论(0) 推荐(0) 编辑
摘要: (https://blog.csdn.net/qq_40663469/article/details/89061612) 机器浮点数的加减 阅读全文
posted @ 2024-12-04 20:03 某朝 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 文件复位 将文件指针复位的2种方法 第一种 rewind(fp); 第二种 fseek(fp,0L,SEEK_SET) 起始点 表示符号 数字表示 文件首 SEEK—SET 0 当前位置 SEEK—CUR 1 文件末尾 SEEK—END 2 例如:fseek(fp,100L,0);其意义是把位置 指 阅读全文
posted @ 2024-12-02 18:12 某朝 阅读(2) 评论(0) 推荐(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 阅读全文
posted @ 2024-11-30 19:06 某朝 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 一篇足够 阅读全文
posted @ 2024-11-30 11:27 某朝 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Description 数据结构与算法实验题 Sins of a Solar EmpireP6 ★实验任务 正如你所知道的s_sin是一个贪玩的不得了的小P孩QAQ,你也知道他最近很喜欢玩一个叫做太阳帝国的原罪的策略游戏去年 他已经和疯狂的AI交战了整整一年。而现在,战斗的序幕又要拉开了。 在某个星 阅读全文
posted @ 2024-11-28 21:47 某朝 阅读(31) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<cstring> #include<algorithm> #include<queue> using namespace std; typedef pair<int, int>PII; const int N = 110; int n, m; 阅读全文
posted @ 2024-11-28 17:36 某朝 阅读(4) 评论(0) 推荐(0) 编辑