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

剑指OFFER 替换空格

时间:2020-01-17 09:50:40      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:oid   int   off   替换   cpp   while   return   public   length   

剑指OFFER 替换空格

class Solution {
public:
    void replaceSpace(char *str,int length) {
        string s(str);

        size_t pos;
        while( (pos = s.find(' ')) != string::npos )
        {
            s.replace(pos,1,"%20");
        }
        
        
        for(int i=0;i<s.size();i++)
        {
            str[i]=s[i];
        }
        str[s.size()] = '\0';
        
        return;
    }
};

剑指OFFER 替换空格

标签:oid   int   off   替换   cpp   while   return   public   length   

原文地址:https://www.cnblogs.com/virgildevil/p/12204096.html

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