请实现一个函数,把字符串中的每个空格替换成“20%”。
Posted wanglelelihuanhuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请实现一个函数,把字符串中的每个空格替换成“20%”。相关的知识,希望对你有一定的参考价值。
思路:我们从字符串的末尾开始复制和替换。
1、定义两个指针,p1和p2。p1指向原始字符串的末尾,p2指向替换后字符串的末尾。
2、向前移动指针p1,逐个把它指向的字符复制到p2指向的位置,直到碰到第一个空格为止。碰到第一个空格后,p1向前移动一格,然后在p2之前插入字符串“20%”。同时也要把p2向前移动3格。
3、重复第2步,直到p1和p2指向同一位置,说明所有空格都已替换完。
#include<iostream>
#include<string>
using namespace std;
void ReplaceBlank(string& str, int len)
if (len <= 0)
return;
int countBlank = 0;
//统计字符串中空格的个数
for (int i = 0; i <len; ++i)
if (str[i] ==' ' )
++countBlank;
int newLength = len + countBlank * 2;//计算新字符串长度
if (newLength == len)
return;
int oldIndex = len-1;//指向原始字符串结尾
int newIndex = newLength-1;//指向替换后字符串结尾
str.resize(newLength);//将字符串的容量一次性扩到新的大小
while (oldIndex>=0 && newIndex>oldIndex)
if (str[oldIndex] == ' ')
str[newIndex--] = '0';
str[newIndex--] = '2';
str[newIndex--] = '%';
else
str[newIndex--] = str[oldIndex];
--oldIndex;
int main()
string str = "hello world ";
int len =str.size() ;
ReplaceBlank(str,len);
cout << str << endl;
return 0;
以上是关于请实现一个函数,把字符串中的每个空格替换成“20%”。的主要内容,如果未能解决你的问题,请参考以下文章
请实现一个函数,把字符串中的每一个空格替换成“%20”,比如输入 “We are Happly。” 则输出“we%20are%20happy。”
请实现一个函数,将一个字符串中的每个空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。
请实现一个函数,将一个字符串中的每个空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy