剑指offer——字符串替换空格

题目描述

请实现一个函数,将一个字符串中的每个空格替换成“%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';
            }
        }
    }
};

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值