思路:将前P个元素逆置,再将后n-p个元素逆置,最后整体逆置。
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47#include<iostream> #include<cstdio> #define N 50 using namespace std; void Reverse (int R[],int l,int r) { int i,j; int temp; for(i=l,j=r;i<j;++i,--j) { temp=R[i]; R[i]=R[j]; R[j]=temp; printf("%d~~%dn",R[i],R[j]); } printf("~~~~~~~~~n"); } void RCR(int R[],int n,int p) { if (p<=0||p>=n) cout<<"ERROR"<<endl; else { Reverse(R,0,p-1); Reverse(R,p,n-1); Reverse(R,0,n-1); } } int main() { int L,i; int R[N],n; cin>>L; cin>>n; for(i=0;i<=n-1;++i) { cin>>R[i]; } RCR(R,n,L); for(i=0;i<=n-1;++i) cout<<R[i]<<" "; cout<<endl; return 0; }
注意:不要把l当做1,找了半天才找到。
最后
以上就是花痴音响最近收集整理的关于循环左移的全部内容,更多相关循环左移内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复