标签:lse level for mon ini down rap ios html_
请实现一个函数,将一个字符串中的每个空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。
//
// Created by Elijah on 2020/5/15.
//
#include <iostream>
#include <stack>
#include <stdio.h>
using namespace std;
/**
* 请实现一个函数,将一个字符串中的每个空格替换成“%20”。
* 例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。
*/
class Solution {
public:
void replaceSpace(char *str, int length) {
if (str == NULL || length == 0)
return;
stack<char> ret;
for (int i = length - 1; i > -1; i--) {
if (str[i] == ‘ ‘) {
ret.push(‘0‘);
ret.push(‘2‘);
ret.push(‘%‘);
} else {
ret.push(str[i]);
}
}
int pos = 0;
while (!ret.empty()) {
str[pos] = ret.top();
ret.pop();
pos += 1;
}
}
};
标签:lse level for mon ini down rap ios html_
原文地址:https://www.cnblogs.com/Elijah-Z/p/12896700.html