题目描述
请实现一个函数,将一个字符串中的每个空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。
思路一: 新建一个字符串,将原字符串遍历,不是空格就直接赋值个新字符串,遇到空格就在新字符串里加"%20"
缺点:时间复杂度为O(n^2),空间复杂度是O(n)
#include<iostream>
using namespace std;
class Solution {
public:
void replaceSpace(char *str,int length) {
int count=0;
char s[100];//用来放替换空格后的字符串
int i=0,j=0;
while(*str!='\0')
{
if(*str!=' ')
{
s[i]=*str;
str++;
i++;
}else{
str++;
s[i]='%';
s[i+1]='2';
s[i+2]='0';
i=i+3;
}
}
s[i]='\0';
//char *p=s;
cout<<s;
}
};
int main()
{
Solution s1;
char str[100]={"hello world what do you want"};
int len=strlen(str);
s1.replaceSpace(str,len);
}
输出为:
思路二:从后往前,在原有字符串基础上替换字符串
三个字符"%20"替换一个空格字符" ",每个替换要多出2个字符的空间,所以新的长度是原长度+2*count
由于是从后往前赋值,所以原来str[i]不是空格时应当等于str[i+2*count],等于空格时就是count--,留出替换字符串的空间替换字符串
class Solution {
public:
void replaceSpace(char *str,int length) {
int count=0;
for(int i=0;i<length;i++){
if(str[i]==' ')
count++;
}
for(int i=length-1;i>=0;i--){
if(str[i]!=' '){
str[i+2*count]=str[i];
}
else{
count--;
str[i+2*count]='%';
str[i+2*count+1]='2';
str[i+2*count+2]='0';
}
}
}
};