1738: 排序(C语言冒泡排序) 摘要: #include void bubble(int a[],int n)//冒泡排序 { for(int i=0;i…… 题解列表 2023年07月21日 0 点赞 0 评论 654 浏览 评分:8.0
3020: 最大数位置(C语言) 摘要: #include int main() { int n; scanf("%d",&n); int a[n]; for(int i=0;i…… 题解列表 2023年07月21日 1 点赞 2 评论 610 浏览 评分:10.0
数组模拟队列 摘要:解题思路:使用数组模拟队列注意事项:没有使用STL,避免超时参考代码:#include<iostream>#include<algorithm>using namespace std;const in…… 题解列表 2023年07月21日 0 点赞 0 评论 293 浏览 评分:9.9
1672: 迷宫问题(bfs) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <queue> using namespace std; struct node{ int x; …… 题解列表 2023年07月21日 0 点赞 0 评论 175 浏览 评分:0.0
闲来无事的题解1111111 摘要:解题思路:注意事项:参考代码:long long a,b; //长整形(100000000000000000000-(-100000000000000000000))int a,b; //普通整…… 题解列表 2023年07月21日 0 点赞 0 评论 237 浏览 评分:0.0
闲来无事的题解 摘要:解题思路:注意事项:参考代码:long long a,b; //长整形(100000000000000000000-(-100000000000000000000))int a,b; //普通整…… 题解列表 2023年07月21日 0 点赞 0 评论 217 浏览 评分:2.0
2886: 图像旋转 摘要:参考代码:#include <bits/stdc++.h>using namespace std;long long int a[1300][1300];int main(){ int m,n;…… 题解列表 2023年07月21日 0 点赞 0 评论 458 浏览 评分:9.9
**图像旋转** 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long a[100][100],n,m;int main(){ …… 题解列表 2023年07月21日 0 点赞 0 评论 209 浏览 评分:8.0
2886: 图像旋转 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long a[1000][1000];int main(){ lo…… 题解列表 2023年07月21日 0 点赞 0 评论 240 浏览 评分:0.0
2886: 图像旋转 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long a[100][100],n,m;int main(){ …… 题解列表 2023年07月21日 0 点赞 0 评论 207 浏览 评分:9.9