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

将“talk is cheap show me the code”中的空格替换为“&&&”

程序员文章站 2022-07-14 07:59:00
...

将“talk is cheap show me the code”中的空格替换为“&&&”
思路:
(1)先将字符串中空格的个数计算出来
(2)重新计算数组中的大小
(3)遇到空格,则替换,不是空格,则直接搬移即可
(4)直到原字符串中的所有元素都被替换完全
将“talk is cheap show me the code”中的空格替换为“&&&”

具体代码如下所示

#include<iostream>
using namespace std;
#include<assert.h>
#include<string.h>
//将“talk is cheap show me the code”中的空格替换为“&&&”
    void ReplacePace(char*array, size_t size)
    {
        int count = 0;//统计字符串中空格出现的次数
        int length = 0;//新的长度
        if (size == 0)
            return;
        else
        {
            // 先统计空格的个数
            for (int i = 0; i < size; ++i)
            {
                if (array[i] == ' ')
                    count++;
            }

            //开辟相应大小的内存
            length = size + count * 2;
            int right = length;

            //替换
            while (size < right)
            {
                if (array[size] == ' ')
                {
                    array[right--] = '&';
                    array[right--] = '&';
                    array[right--] = '&';
                    size--;
                }
                else
                {
                    array[right--] = array[size];
                    size--;
                }
            }
        }
    }

全部代码以及测试代码如下所示

#include<iostream>
using namespace std;
#include<assert.h>
#include<string.h>
//将“talk is cheap show me the code”中的空格替换为“&&&”
    void ReplacePace(char*array, size_t size)
    {
        int count = 0;//统计字符串中空格出现的次数
        int length = 0;//新的长度
        if (size == 0)
            return;
        else
        {
            // 先统计空格的个数
            for (int i = 0; i < size; ++i)
            {
                if (array[i] == ' ')
                    count++;
            }

            //开辟相应大小的内存
            length = size + count * 2;
            int right = length;

            //替换
            while (size < right)
            {
                if (array[size] == ' ')
                {
                    array[right--] = '&';
                    array[right--] = '&';
                    array[right--] = '&';
                    size--;
                }
                else
                {
                    array[right--] = array[size];
                    size--;
                }
            }
        }
    }

int main()
{
    //有效字符串
    char array[50] = "I love The World";
    cout << "替换前:" << array << endl;
    ReplacePace(array, sizeof(array) / sizeof(*array));
    cout << "替换后:" << array << endl;
    //字符串中的size为0
    char arr[10];
    ReplacePace(arr, 0);
    system("pause");
    return 0;
}

结果如下所示:
将“talk is cheap show me the code”中的空格替换为“&&&”

只有不停的奔跑,才能不停留在原地!!!

相关标签: 替换