leetcode | 面试题 01.03. URL化
程序员文章站
2024-03-04 10:46:29
...
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;
}
};
上一篇: Android仿斗鱼直播的弹幕效果