小白,看看就行,不动脑袋 摘要:解题思路:注意事项:参考代码:小白菜鸟写的,看看就好#include<iostream>using namespace std;int main(){ int arr[1000]; int…… 题解列表 2024年11月06日 0 点赞 0 评论 46 浏览 评分:0.0
STL中有swap交换(无需手搓) 摘要:#include<bits/stdc++.h> using namespace std; const int N=1010; int a[N]; int main() { int n,m…… 题解列表 2024年08月04日 0 点赞 0 评论 48 浏览 评分:0.0
坑是真的多。。。。。给定N个整数组成的序列,每次交换当前第x个与第y个整数,要求输出最终的序列。 摘要:解题思路:读入数列和换行数,一直读取x,y,读取一次交换一次注意事项:小心,给的x, y不是数组的下标,需要做处理,其次注意越界的问题参考代码:#include<iostream> using na…… 题解列表 2024年06月20日 0 点赞 0 评论 60 浏览 评分:9.9
编写题解 1491: 蓝桥杯算法提高VIP-交换Easy 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; void print(int a[],int n) { for(int i…… 题解列表 2022年04月28日 0 点赞 0 评论 206 浏览 评分:0.0
小白单纯记录自己题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int temp,j,i,m,n,a[1000],b[1000]…… 题解列表 2022年03月12日 0 点赞 0 评论 119 浏览 评分:0.0
1491: 蓝桥杯算法提高VIP-交换Easy 标题(c++版) 摘要:```cpp #include using namespace std; void exchange(int c,int d,int arr[]) { int temp; …… 题解列表 2022年02月16日 0 点赞 0 评论 346 浏览 评分:9.9
蓝桥杯算法提高VIP-交换Easy 摘要:解题思路: 技巧:根据输入N的大小初始化数组。注意事项:可以封装成swap函数,由于简单,罢了。参考代码:#include<iostream> using namespace std; int m…… 题解列表 2022年01月13日 0 点赞 0 评论 91 浏览 评分:0.0
工程化的C++代码实现 摘要:# 思想 创建一个长度为N数组,交换M次,直接用swap交换就行。 #include #define hh ios::sync_with_stdio(false),cin.t…… 题解列表 2021年10月25日 0 点赞 0 评论 248 浏览 评分:0.0
蓝桥杯算法提高VIP-交换Easy-题解(C++代码)超详细注释 摘要:解题思路: 巧妙的数字转下标,下标转数字参考代码:#include<bits/stdc++.h> using namespace std; int main() { int a…… 题解列表 2020年08月13日 0 点赞 0 评论 561 浏览 评分:9.9
蓝桥杯算法提高VIP-交换Easy-题解(C++代码)用了C++的引用来交换 摘要:##### 思路:这里可以用C++一个特性:用引用函数来实现两数交换,这里我把两个数交换的位置定义为x[],y[]数组来实现 ##### 注意事项:交换的数位置是数组的下标-1 ##### 代码如…… 题解列表 2020年05月05日 0 点赞 0 评论 514 浏览 评分:9.9