上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: 【递归树求时间复杂度-哔哩哔哩】 https://b23.tv/smeBKsf 阅读全文
posted @ 2024-12-06 21:04 某朝 阅读(7) 评论(0) 推荐(0)
摘要: 双端口存储器 阅读全文
posted @ 2024-12-04 21:27 某朝 阅读(17) 评论(0) 推荐(0)
摘要: (https://blog.csdn.net/qq_40663469/article/details/89061612) 机器浮点数的加减 阅读全文
posted @ 2024-12-04 20:03 某朝 阅读(8) 评论(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 某朝 阅读(36) 评论(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 某朝 阅读(21) 评论(0) 推荐(0)
摘要: 一篇足够 阅读全文
posted @ 2024-11-30 11:27 某朝 阅读(15) 评论(0) 推荐(0)
摘要: Description 数据结构与算法实验题 Sins of a Solar EmpireP6 ★实验任务 正如你所知道的s_sin是一个贪玩的不得了的小P孩QAQ,你也知道他最近很喜欢玩一个叫做太阳帝国的原罪的策略游戏去年 他已经和疯狂的AI交战了整整一年。而现在,战斗的序幕又要拉开了。 在某个星 阅读全文
posted @ 2024-11-28 21:47 某朝 阅读(43) 评论(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 某朝 阅读(23) 评论(0) 推荐(0)
摘要: 1 #include <stdio.h> #include <string.h> int main() { char* p1 = "12345", * p2 = p1; //允许! char* p3, p4[80]; //strcpy(p3,p1); 此时p3为野指针! p3 = "12345"; 阅读全文
posted @ 2024-11-25 21:24 某朝 阅读(20) 评论(0) 推荐(0)
摘要: #include <stdio.h> void printBinary(unsigned int n) { int i; unsigned int mask = 1 << (sizeof(n) * 8 - 1); // 生成最高位的掩码 for (i = 0; i < sizeof(n) * 8; 阅读全文
posted @ 2024-11-22 22:01 某朝 阅读(14) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 11 下一页