C语言-指针-交换字符数组

C语言-指针-交换字符数组,第1张

任务描述

以指针变量作为函数参数实现两个字符交换函数,利用该函数交换字符数组a和字符数组b中的字符串。

编程要求

实现两个字符交换函数swap,然后再编写一个函数,调用swap函数,实现两个字符数组中字符串的交换,交换字符数组a和b的内容。假设存入数组a和b中的字符串长度不超过80。

测试说明

测试输入:
Teacher
actor
预期输出:
actor
Teacher

测试输入:
I want to be a teacher.
I want to be an actor.
预期输出:
I want to be an actor.
I want to be a teacher.

#include 
#include 
#define ARR_SIZE  80
void Swap(char *ch1, char *ch2);
void SwapStringArray(char str1[], char str2[]);

int main()
{
    char str1[ARR_SIZE],str2[ARR_SIZE];
    fgets(str1,ARR_SIZE,stdin);
    fgets(str2,ARR_SIZE,stdin);
    SwapStringArray(str1,str2);
    puts(str1);
    puts(str2);
    return 0;
}

void Swap(char *pa, char *pb)
{
    char temp;
    temp = *pa;
    *pa = *pb;
    *pb = temp;
}

void swap(char *ch1, char *ch2)
{
    char temp;
    temp = *ch1;
    *ch1 = *ch2;
    *ch2 = temp;
}

void SwapStringArray(char str1[], char str2[])
{
    int i=0,j=0;
    while(str1[i]!='\0' && str2[j]!='\0')
    {
        Swap(&str1[i],&str2[j]);
        i++;
        j++;
    }

    if(str1[i] != '\0' && str2[j] == '\0')
    {
        while(str1[i] != '\0')
        {
            swap(&str1[i],&str2[i]);
            i++;
        }
        str1[j] ='\0';
        str2[i] = '\0';
    }else if(str1[i] == '\0' && str2[j] != '\0')
    {
        while(str2[j] !='\0')
        {
            swap(&str1[j],&str2[j]);
            j++;
        }
        str1[j]='\0';
        str2[i]='\0';
    }
}

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/756287.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-30
下一篇 2022-04-30

发表评论

登录后才能评论

评论列表(0条)

保存