信息学奥赛一本通 2035:【例5.2】平移数据
生活随笔
收集整理的這篇文章主要介紹了
信息学奥赛一本通 2035:【例5.2】平移数据
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
【題目鏈接】
ybt 2035:【例5.2】平移數(shù)據(jù)
【題目考點(diǎn)】
1. 數(shù)組
【解題思路】
- 解法1:真正改變數(shù)組。用一個變量保存第一個元素,從第二個元素開始,依次賦值給前一個元素。再把第一個元素的值賦值給最后一個元素。
- 解法2:輸入時,第一個元素用變量保存,然后數(shù)組第1位置保存第2個數(shù),第2位置保存第3個數(shù)。。。第n-1位置保存第n個數(shù),再把第一個元素賦值給第n位置。
- 解法3:不改變數(shù)組,只是從第2個元素開始輸出到最后,再輸出第一個元素。
【題解代碼】
解法1:改變數(shù)組
#include <bits/stdc++.h> using namespace std; int main() {int a[105], n, x, temp;cin >> n;for(int i = 1; i <= n; ++i){cin >> x;a[i] = x;}temp = a[1];//臨時保存a[1] for(int i = 2; i <= n; ++i)a[i-1] = a[i];a[n] = temp;for(int i = 1; i <= n; ++i)cout << a[i] << ' ';return 0; }解法2:輸入時錯位
#include <bits/stdc++.h> using namespace std; int main() {int a[105], n, x, temp;cin >> n;cin >> temp;for(int i = 1; i <= n - 1; ++i){cin >> x;a[i] = x;}a[n] = temp;for(int i = 1; i <= n; ++i)cout << a[i] << ' ';return 0; }解法3:不改變數(shù)組
#include <bits/stdc++.h> using namespace std; int main() {int a[105], n, x;cin >> n;for(int i = 1; i <= n; ++i){cin >> x;a[i] = x;}for(int i = 2; i <= n; ++i)cout << a[i] << ' ';cout << a[1];return 0; }總結(jié)
以上是生活随笔為你收集整理的信息学奥赛一本通 2035:【例5.2】平移数据的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 信息学奥赛一本通 2057:【例3.9
- 下一篇: OpenJudge NOI 1.5 25