首页
Linux
Linux常用命令介绍
tmux和vim 工具
ssh登录常用命令
scp传文件
Git版本控制常用命令
docker常用命令
图库
瞬间
归档
留言板
关于我
友链
小郭的学习笔记
累计撰写
154
篇文章
累计创建
65
个标签
累计收到
1
条评论
栏目
首页
Linux
Linux常用命令介绍
tmux和vim 工具
ssh登录常用命令
scp传文件
Git版本控制常用命令
docker常用命令
图库
瞬间
归档
留言板
关于我
友链
目 录
CONTENT
最新文章
2024-01-02
785.快速排序cc++
785.快速排序c/c++ 源代码: #include<iostream> using namespace std; const int N = 1e6+10; int n; int q[N]; //二分法,小的放左边,大的放右边 void quick_sort(int q[],int l,int
2024-01-02
28
0
0
2024-01-02
796. 子矩阵的和(大矩阵删小矩阵)
796. 子矩阵的和(暴力) #include<iostream> using namespace std; const int N = 1010; int s[N][N]; int n,m,q; int main(){ scanf("%d%d%d",&n,&m,&q); for
2024-01-02
32
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
36
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
42
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
30
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
28
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
26
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
30
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
25
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
30
0
0
1
...
4
5
6
...
16