题解 1491: 蓝桥杯算法提高VIP-交换Easy

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

小白,看看就行,不动脑袋

摘要:解题思路:注意事项:参考代码:小白菜鸟写的,看看就好#include<iostream>using namespace std;int main(){    int arr[1000];    int……

小白单纯记录自己题解

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int temp,j,i,m,n,a[1000],b[1000]……

蓝桥杯算法提高VIP-交换Easy

摘要:解题思路: 技巧:根据输入N的大小初始化数组。注意事项:可以封装成swap函数,由于简单,罢了。参考代码:#include<iostream> using namespace std; int m……

工程化的C++代码实现

摘要:# 思想 创建一个长度为N数组,交换M次,直接用swap交换就行。 #include #define hh ios::sync_with_stdio(false),cin.t……