蓝桥杯算法提高VIP-交换Easy-题解(C++代码) 摘要:```cpp #include using namespace std; void f(int x,int y,int a[]) { int t=a[x-1]; a[x-1…… 题解列表 2020年05月01日 0 点赞 0 评论 284 浏览 评分:0.0
蓝桥杯算法提高VIP-交换Easy-题解(C++代码) 摘要:入门题 不难 很好理解 用了swap函数 也可以用交换代码 这里就不赘述了 ```cpp #include #include using namespace std; int mai…… 题解列表 2020年04月15日 0 点赞 0 评论 309 浏览 评分:0.0
蓝桥杯算法提高VIP-交换Easy-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int n,m; cin>>n>>m; int *a=new i…… 题解列表 2020年03月24日 0 点赞 0 评论 298 浏览 评分:0.0
蓝桥杯算法提高VIP-交换Easy-题解(C++代码) 摘要: #include using namespace std; int main() { int n,m; int num[1000]; …… 题解列表 2020年02月18日 0 点赞 0 评论 298 浏览 评分:0.0
蓝桥杯算法提高VIP-交换Easy-题解(C++代码) 摘要:``` #include #define maxn 1005 using namespace std; int a[maxn]; int main(){ int n,m; c…… 题解列表 2020年02月06日 0 点赞 0 评论 271 浏览 评分:0.0
蓝桥杯算法提高VIP-交换Easy (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int M=1005; int a[M]={0}; int main(…… 题解列表 2018年04月01日 0 点赞 0 评论 538 浏览 评分:0.0
蓝桥杯算法提高VIP-交换Easy (C++代码) 摘要:#include <iostream> #include <fstream> #include <deque> #include <cstdlib> #include <string> #i…… 题解列表 2018年03月02日 0 点赞 0 评论 578 浏览 评分:0.0
WU-蓝桥杯算法提高VIP-交换Easy (C++代码) 摘要:用一个交换函数 直接在函数里面进行数字的交换 注意事项: 注意交换的是第几个数 与数组的下标相差1#include<iostream> using namespace std; in…… 题解列表 2017年12月22日 4 点赞 0 评论 1288 浏览 评分:6.0
蓝桥杯算法提高VIP-交换Easy (C++代码) 摘要:#include<iostream> using namespace std; int main(){ int n,m,a[1000],x,y; cin>>n>>m; …… 题解列表 2017年12月18日 1 点赞 0 评论 773 浏览 评分:0.0
交换Easy (C++代码) 摘要:解题思路:注意事项:动态分配(或者直接定义一个足够大的全局数组)交换两数下标相同时不交换,节约时间参考代码:#include <iostream>using namespace std;int mai…… 题解列表 2017年07月15日 0 点赞 0 评论 660 浏览 评分:0.0