3072: 括弧匹配检验 摘要:# 栈问题 > https://www.programmercarl.com/0020.%E6%9C%89%E6%95%88%E7%9A%84%E6%8B%AC%E5%8F%B7.html#%E8…… 题解列表 2023年07月19日 0 点赞 0 评论 542 浏览 评分:0.0
STL :蓝桥杯算法提高VIP-队列操作 摘要:# STL queue ```c++ #include #include using namespace std; auto main()->int { queue num…… 题解列表 2023年07月19日 0 点赞 0 评论 441 浏览 评分:0.0
石头剪刀布 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[10000000],b[10000000];int main(){ …… 题解列表 2023年07月19日 0 点赞 0 评论 303 浏览 评分:0.0
1099: 校门外的树 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[10000000];int main(){ int l,m,su…… 题解列表 2023年07月19日 0 点赞 0 评论 359 浏览 评分:0.0
1099: 校门外的树 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int l,m,tree[10000000],s,e,sum=0;int main…… 题解列表 2023年07月19日 0 点赞 0 评论 536 浏览 评分:0.0
校门外的坤 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>int l,m,tree[10000000];using namespace std;int main(){ int…… 题解列表 2023年07月19日 0 点赞 0 评论 394 浏览 评分:0.0
余数相同问题(c++) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; int …… 题解列表 2023年07月19日 0 点赞 0 评论 520 浏览 评分:0.0
题解 3012: 分苹果 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>int main(){ int n; scanf("%d",&n); printf("%ld",(n+1)…… 题解列表 2023年07月20日 0 点赞 0 评论 388 浏览 评分:0.0
自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int tongji(char s1[1000],int m);int main(){ char s…… 题解列表 2023年07月20日 0 点赞 0 评论 331 浏览 评分:0.0
计算矩阵边缘元素之和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[100][100];int main(){ int n,m,su…… 题解列表 2023年07月20日 0 点赞 0 评论 282 浏览 评分:0.0