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

剑指OFFER----面试题05.替换空格

时间:2020-02-15 18:41:16      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:string   试题   ret   turn   for   style   --   面试   etc   

链接:https://leetcode-cn.com/problems/ti-huan-kong-ge-lcof/

 

代码:

class Solution {
public:
    string replaceSpace(string s) {
        string res;
        for (auto x: s) {
            if (x ==  )
                res += "%20";
            else
                res += x;
        }
        return res;
    }
};

 

剑指OFFER----面试题05.替换空格

标签:string   试题   ret   turn   for   style   --   面试   etc   

原文地址:https://www.cnblogs.com/clown9804/p/12312829.html

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