6-3 移动字母

本题要求编写函数,将输入字符串的前3个字符移到最后。

函数接口定义:

void Shift( char s[] );

其中char s[]是用户传入的字符串,题目保证其长度不小于3;函数Shift须将按照要求变换后的字符串仍然存在s[]里。

裁判测试程序样例:

#include

#include

#define MAXS 10 void Shift( char s[] );

void GetString( char s[] ); /* 实现细节在此不表 */

int main()

{ char s[MAXS];

GetString(s);

Shift(s);

printf("%s\n", s); return 0;

}

/* 你的代码将被嵌在这里 */

输入样例:

abcdef

输出样例:

defabc

 我的代码(第一次写的):
思路:定义一个数组a有10个元素和s的个数一样,然后用strcmp插入s[3]之后的全部数组,由于s的长度不知道所以用strlen算出来,在s[3]设置一个结束的地方,然后再a[len+3]后继续将前3个数插入

void Shift( char s[] )
{
    char a[10];
    strcpy(a,s+3);
    int len=strlen(s);
    s[3]=0;
    strcpy(a+len-3,s);
    strcpy(s,a);
}

结果:

6-3 移动字母_第1张图片

 我看到长度超过MAXS然后就把a[10]改成了a[100],然后就对了。。

void Shift( char s[] )
{
    char a[100];
    strcpy(a,s+3);
    int len=strlen(s);
    s[3]=0;
    strcpy(a+len-3,s);
    strcpy(s,a);
}

6-3 移动字母_第2张图片

 

你可能感兴趣的:(算法,c++,开发语言)