数组元素循环右移及静态链表

Posted LeoSanford

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组元素循环右移及静态链表相关的知识,希望对你有一定的参考价值。

1. 静态链表

https://github.com/BodhiXing/Data_Structure/tree/master/StaticListDemo

2. 数组元素循环右移

https://pta.patest.cn/pta/test/17/exam/4/question/262

思路:不做循环,只是换方式打印输出。

 1 #include <stdio.h>
 2 #include <math.h>
 3 
 4 
 5 int main() {
 6     int n,m,i;
 7     scanf("%d %d",&n,&m);
 8     int a[n];
 9     for(i=0; i<n; i++)
10         scanf("%d",&a[i]);
11     //M>N
12     while(m>=n)
13         m %= n;
14     for(i=n-m; i<n; i++)
15         printf("%d ",a[i]);
16     for(i=0; i<n-m-1; i++) {
17         printf("%d ",a[i]);
18     }
19     //注意:序列结尾不能有多余空格 
20     printf("%d",a[i]);
21     return 0;
22 }

 

以上是关于数组元素循环右移及静态链表的主要内容,如果未能解决你的问题,请参考以下文章

数组元素循环右移

1008. 数组元素循环右移问题

B1008 数组元素循环右移问题 (20分)

PAT乙级 1008. 数组元素循环右移问题 (20)

自测-3 数组元素循环右移问题 (20 分)—— 数据结构-起步能力自测题

PAT 乙级 水题 1008. 数组元素循环右移问题 (20)