首页
Linux
Linux常用命令介绍
tmux和vim 工具
ssh登录常用命令
scp传文件
Git版本控制常用命令
docker常用命令
图库
瞬间
归档
留言板
关于我
友链
小郭的学习笔记
累计撰写
152
篇文章
累计创建
65
个标签
累计收到
1
条评论
栏目
首页
Linux
Linux常用命令介绍
tmux和vim 工具
ssh登录常用命令
scp传文件
Git版本控制常用命令
docker常用命令
图库
瞬间
归档
留言板
关于我
友链
目 录
CONTENT
最新文章
2024-01-02
798. 差分矩阵(优化版本)
798. 差分矩阵(优化版本) #include<iostream> using namespace std; const int N = 1010; int a[N][N],b[N][N]; int main(){ int n,m,q; scanf("%d%d%d",&n,&m
2024-01-02
31
0
0
2024-01-02
798. 差分矩阵
798. 差分矩阵(优化版本) #include<iostream> using namespace std; const int N = 1010; int a[N][N],b[N][N]; int main(){ int n,m,q; scanf("%d%d%d",&n,&m
2024-01-02
35
0
0
2024-01-02
799. 最长连续不重复子序列
799. 最长连续不重复子序列 #include<iostream> #include<algorithm> using namespace std; const int N = 1000010; int a[N],s[N]; int n; int main(){ scanf("%d",&
2024-01-02
24
0
0
2024-01-02
800. 数组元素的目标和
800. 数组元素的目标和 暴力枚举解法 #include<iostream> using namespace std; const int N = 1000010; int A[N],B[N]; int main(){ int n, m, x; scanf("%d%d%d",&n
2024-01-02
24
0
0
2024-01-02
801. 二进制中1的个数
801. 二进制中1的个数 位运算操作 #include<iostream> using namespace std; const int N = 100010; int a[N]; int main(){ int n; scanf("%d",&n); for(int i
2024-01-02
24
0
0
2024-01-02
802. 区间和
802. 区间和 ![image-20220119210705668](C:\Users\14700\AppData\Roaming\Typora\typora-user-images\image-20220119210705668.png) 离散解法 #include<iostream> #inc
2024-01-02
23
0
0
2024-01-02
826. 单链表
826. 单链表 代码 #include<iostream> using namespace std; const int N = 100010; int e[N], ne[N], head, idx; //初始化链表 void init(){ head = -1; idx =
2024-01-02
23
0
0
2024-01-02
828. 模拟栈
829. 模拟队列 #include<iostream> using namespace std; const int N = 100010; int q[N], hh, tt = -1; void push(int x){ q[ ++ tt] = x; } void pop(){
2024-01-02
28
0
0
2024-01-02
828.模拟栈
828.模拟栈 实现一个栈,栈初始为空,支持四种操作: push x – 向栈顶插入一个数 xx; pop – 从栈顶弹出一个数; empty – 判断栈是否为空; query – 查询栈顶元素。 现在要对栈进行 MM 个操作,其中的每个操作 33 和操作 44 都要输出相应的结果。 输入格式 第一
2024-01-02
50
0
0
2024-01-02
828. 模拟队列
829. 模拟队列 #include<iostream> using namespace std; const int N = 100010; int q[N], hh, tt = -1; void push(int x){ q[ ++ tt] = x; } void pop(){
2024-01-02
24
0
0
1
...
4
5
6
...
16