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

leetcode | 面试题 01.03. URL化

程序员文章站 2024-03-04 10:46:29
...

leetcode | 面试题 01.03. URL化

class Solution {
public:
    string replaceSpaces(string S, int length) {
        string temp;
        for(int i = 0; i < length; i++)
        {
            temp += S[i];
        }

        string res;
        for(int i = 0; i < temp.size(); i++)
        {
            if(temp[i] == ' ')
            {
                res += "%20";
            }
            else
            {
                res += temp[i];
            }
        }
        return res;
    }
};