【MAC 上学习 C++】Day 19-4. 习题8-6 删除字符 (20 分)

习题8-6 删除字符 (20 分)

1. 题目摘自

https://pintia.cn/problem-sets/12/problems/339

2. 题目内容

本题要求实现一个删除字符串中的指定字符的简单函数。

函数接口定义:

void delchar( char *str, char c );
其中char *str是传入的字符串,c是待删除的字符。函数delchar的功能是将字符串str中出现的所有c字符删除。

输入样例:

a
happy new year

输出样例:

hppy new yer

3. 源码参考
#include

using namespace std;

#define MAXN 20

void delchar(char *str, char c);
void ReadString(char s[]);

int main()
{
    char str[MAXN], c;

    scanf("%c\n", &c);
    ReadString(str);
    delchar(str, c);
    printf("%s\n", str);

    return 0;
}

void ReadString(char s[])
{
    cin.getline(s, MAXN);

    return;
}

void delchar(char *str, char c)
{
    char *s;

    s = str;

    if (str != NULL)
    {
        while (*str)
        {
            if (*str != c)
            {
                *s = *str;
                s++;
            }

            str++;
        }

        *s = *str;
    }

    return;
}

你可能感兴趣的:(【MAC 上学习 C++】Day 19-4. 习题8-6 删除字符 (20 分))