欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

浙大版《数据结构(第2版)》题目集-习题2.2 数组循环左移 (20分)

程序员文章站 2022-06-10 19:26:22
...

浙大版《数据结构(第2版)》题目集-习题2.2 数组循环左移 (20分)

参考代码

#include<stdio.h>

void Reverse(int x[],int a,int b);
void Output(int x[],int n);

int main()
{
    int n,m;
    scanf("%d%d",&n,&m);
    int x[n];
    int i;
    for(i=0;i<n;i++)
    {
        scanf("%d",&x[i]);
    }
    m=m%n;
    if(m==0)
    {
        Output(x,n);
    }
    else
    {
        Reverse(x,0,m-1);
        Reverse(x,m,n-1);
        Reverse(x,0,n-1);
        Output(x,n);
    }
    return 0;
}

void Reverse(int x[],int a,int b)
{
    int t;
    while(b>=a)
    {
        t=x[a];
        x[a]=x[b];
        x[b]=t;
        a++;
        b--;
    }
}

void Output(int x[],int n)
{
    int i;
    for(i=0;i<n;i++)
        {
            printf("%d",x[i]);
            if(i==n-1)
            {
                printf("\n");
            }
            else
            {
                printf(" ");
            }
        }
}

思路:

例如题目中的

8 3
1 2 3 4 5 6 7 8

先将
1 2 3翻转为3 2 1
再将
4 5 6 7 8翻转为8 7 6 5 4
最后将整体翻转
3 2 1 8 7 6 5 4翻转为4 5 6 7 8 1 2 3