标签:out ensure 数据 元素 数组元素 tom font otto script
一个数组A中存有N(>)个整数,在不允许使用另外数组的前提下,将每个整数循环向右移M(≥)个位置,即将A中的数据由(A?0??A?1???A?N−1??)变换为(A?N−M???A?N−1??A?0??A?1???A?N−M−1??)(最后M个数循环移至最前面的M个位置)。如果需要考虑程序移动数据的次数尽量少,要如何设计移动的方法?
每个输入包含一个测试用例,第1行输入N(1)和M(≥);第2行输入N个整数,之间用空格分隔。
在一行中输出循环右移M位以后的整数序列,之间用空格分隔,序列结尾不能有多余空格。
6 2
1 2 3 4 5 6
5 6 1 2 3 4
一个个向后移动, 把数组最后一个数(即n-1号元素)记录下来, 然后0~n-2号元素开始移动, 最后将n-1赋给0号元素
#include <iostream> using namespace std; int main() { int a[110]; int n, m, t; cin >> n >> m; for(int i = 0; i < n; ++ i) { cin >> a[i]; } for(int i = 0; i < m; ++ i) { t = a[n - 1]; for(int j = n - 2; j >= 0; -- j) { a[j + 1] = a[j]; } a[0] = t; } for(int i = 0; i < n; ++ i) { if(i == n - 1) { cout << a[i]; } else { cout << a[i] << " "; } } return 0; }
也可以直接在指定位置打印, 但要注意移动的位数m大于数组的长度n的情况
#include <iostream> using namespace std; int main() { int a[110]; int n, m; cin >> n >> m; for(int i = 1; i <= n; ++ i) { cin >> a[i]; } if(m > n) { m = m % n; } for(int i = n - m + 1; i <= n; ++ i) { cout << a[i] << " "; } for(int i = 1; i <= n - m; ++ i) { if(i == n - m) { cout << a[i]; } else { cout << a[i] << " "; } } return 0; }
标签:out ensure 数据 元素 数组元素 tom font otto script
原文地址:https://www.cnblogs.com/mjn1/p/10843734.html