码迷,mamicode.com
首页 > 其他好文 > 详细

【剑指offer】替换空格

时间:2015-04-22 20:42:52      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:c++

        请实现一个函数,把字符串中每个空格替换成“%20”。例如输入“we are happy.",则输出”we%20are%20happy.“。

创建一个新的字符串,传出,是一个比较好的思路。

#include <iostream>
#include <string>
using namespace std;

int change(char *str, char *out)
{
	int i=0,j=0;
	char *temp="%20";
	if (str==NULL||out==NULL)
	{
		return 0;
	}
	while(str[i]!='\0')
	{
		if (!isspace(str[i]))
		{
			out[j]=str[i];
		}
		else
		{
			strcat(out,temp);
			j+=2;
		}
		i++;
		j++;
	}
	return 1;
}

//测试用例
int main()
{
	char buf[100];
	char s[100]={0};
	gets(buf);
	change(buf,s);
	printf("%s\n",s);
	return 0;
}
技术分享

如果要在原来字符串上做替换

//高效思路为从后往前替换。
int change(char str[],int length )
{//length为字符数组的总容量
	int i=0;
	int index,indexnew;
	if (str==NULL||length<=0)
	{
		return 0;
	}
	/*字符串的实际长度*/
	int len=strlen(str);
	int numofbanks=0;
	while(str[i]!='\0')
	{
		if (isspace(str[i]))
		{
			numofbanks++;
		}
		i++;
	}
	/*新字符串的长度*/
	int newlen=len+2*numofbanks;
	if (newlen>length)
	{
		return 0;
	}
	index=len;
	indexnew=newlen;
	while(index>=0)
	{
		if (isspace(str[index]))
		{
			str[indexnew--]='0';
			str[indexnew--]='2';
			str[indexnew--]='%';
		}
		else
		{
			str[indexnew--]=str[index];
		}
		--index;
	}
	return 1;
}
//测试用例
int main()
{
	char buf[100];
	char s[100]={0};
	gets(buf);
	change(buf,100);
	printf("%s\n",buf);
	return 0;
}
技术分享



【剑指offer】替换空格

标签:c++

原文地址:http://blog.csdn.net/lsh_2013/article/details/45199515

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!