MOGUGU
MOGUGU
全部文章
分类
归档
标签
去牛客网
登录
/
注册
MOGUGU的博客
全部文章
(共15篇)
题解 | 好串
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #define MAX_SIZE 100000 //将ab两个符号看成是括号的左边和右边,a为左,b为右,原理与括号匹配一致 //链式栈 ty...
2025-07-30
0
28
题解 | 括号配对问题
#include <stdio.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> #define MAX_SIZE 100000 typedef struct { ...
2025-07-30
1
35
题解 | 【模板】栈的操作
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <string.h> //顺序栈 #define MAX_SIZE 100000 //构造栈的结构体 type...
2025-07-29
0
45
题解 | #乘法表#
#include <stdio.h> void printMultiTable(); int main() { printMultiTable(); return 0; } void printMultiTable() { int i = 0; i...
2023-11-04
0
186
题解 | #KiKi求质数个数#
#include <stdio.h> int PrimeNum(); int main() { printf("%d",PrimeNum()); return 0; } int PrimeNum() { int num = 0; ...
2023-11-04
0
196
首页
上一页
1
2
下一页
末页