2023-08-03力扣今日二题

链接:

剑指 Offer 05. 替换空格

题意:

把字符串 s 中的每个空格替换成"%20"

解:

replace函数

实际代码:

#include
using namespace std;
string replaceSpace(string s)//下标replace法 
{
    for(int i=0;i

限制:

  • 0 <= s 的长度 <= 10000

你可能感兴趣的:(力扣每日一题,leetcode)