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

空格替换

时间:2018-09-12 20:03:22      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:++   length   data   return   code   happy   turn   rom   i++   

请实现一个函数,将一个字符串中的每个空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。

class Solution {
public:
    void replaceSpace(char *str,int length) {
        if (str == NULL || length <= 0) {
            return;
        }
        //count
        int spaceCnt = 0, size = 0;
        for (int i = 0; str[i] != ‘\0‘; i++) {
            if (str[i] == ‘ ‘) {
                spaceCnt++;
            }
            size++;
        }
        int newSize = size+2*spaceCnt;
        if (newSize > length) {
            return;
        }
        //from back to front
        for (int i = size, j = newSize; i >= 0; i--) {
            if (str[i] != ‘ ‘) {
                str[j--] = str[i];
            } else {
                str[j--] = ‘0‘;
                str[j--] = ‘2‘;
                str[j--] = ‘%‘;
            }
        }
    }
};


空格替换

标签:++   length   data   return   code   happy   turn   rom   i++   

原文地址:https://www.cnblogs.com/Spground/p/9636222.html

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