坑是真的多。。。。。给定N个整数组成的序列,每次交换当前第x个与第y个整数,要求输出最终的序列。
摘要:解题思路:读入数列和换行数,一直读取x,y,读取一次交换一次注意事项:小心,给的x, y不是数组的下标,需要做处理,其次注意越界的问题参考代码:#include<iostream>
using na……
STL中有swap交换(无需手搓)
摘要:#include<bits/stdc++.h>
using namespace std;
const int N=1010;
int a[N];
int main()
{
int n,m……
1491: 蓝桥杯算法提高VIP-交换Easy(python)
摘要:~~~python
def swap(L,x,y):
tmp = L[x-1]
L[x-1] = L[y-1]
L[y-1] = tmp
def main():
……
小白,看看就行,不动脑袋
摘要:解题思路:注意事项:参考代码:小白菜鸟写的,看看就好#include<iostream>using namespace std;int main(){ int arr[1000]; int……