码迷,mamicode.com
首页 > 其他好文 > 详细

【字符串】替换空格

时间:2017-05-16 14:57:25      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:字符串 c/c++

/*
请实现一个函数,将一个字符串中的空格替换成“%20”。
例如,当字符串为We Are Happy.则经过替换之后的字符串为
We%20Are%20Happy。
*/
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>

using namespace std;

class Solution {
public:
    void replaceSpace(char *str, int length) {
        for (int i = 0; i < length; ++i){
            if (*(str + i) == ‘ ‘){
                length += 2;
                memset(str + length-2, 0, 2);
                for (int j = length-1; j > i; --j){
                    *(str + j) = *(str + j - 2);
                }
                *(str + i) = ‘%‘;
                *(str + i + 1) = ‘2‘;
                *(str + i + 2) = ‘0‘;
                ++i;
                ++i;
            }
        }
        *(str + length) = ‘\0‘;
    }
};

void foo()
{
    char str[100] = "We Are Happy";
    int len = strlen(str);
    Solution sol;
    sol.replaceSpace(str, len);
    cout << str << endl;
    //如果返回时,str数组长度出现了变化,就会出现Stack around the variable ‘str‘ was corrupted
}

int main()
{
    foo();
    return EXIT_SUCCESS;
}


【字符串】替换空格

标签:字符串 c/c++

原文地址:http://siliconmaigc.blog.51cto.com/12904785/1926179

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!