标签:循环 还需 数组 blog 并且 cti 统计 ntc desc
原题网址:https://www.lintcode.com/problem/space-replacement/description
设计一种方法,将一个字符串中的所有空格替换成 %20
。你可以假设该字符串有足够的空间来加入新的字符,且你得到的是“真实的”字符长度。
你的程序还需要返回被替换后的字符串的长度。
如果使用 Java 或 Python, 程序中请用字符数组表示字符串。
对于字符串"Mr John Smith"
, 长度为 13
替换空格之后,参数中的字符串需要变为"Mr%20John%20Smith"
,并且把新长度 17
作为结果返回。
在原字符串(字符数组)中完成替换,不适用额外空间
class Solution {
public:
/*
* @param string: An array of Char
* @param length: The true length of the string
* @return: The true length of new string
*/
int replaceBlank(char string[], int length) {
// write your code here
if (length==0)
{
return 0;
}
int end=length-1;
int i=0;
while(i!=end+1)
{
if (string[i]!=‘ ‘)
{
i++;
}
else
{
for (int j=end;j>=i;j--)
{
string[j+2]=string[j];
}
string[i]=‘%‘;
string[i+1]=‘2‘;
string[i+2]=‘0‘;
i=i+3;
end=end+2;
}
}
return end+1;
}
};
PS:一开始while循环的循环条件写成了 i != end,运行到 “helloworld ” 出错,尴尬……最后一个字符索引是end,所以循环条件应该是 i != end+1。
标签:循环 还需 数组 blog 并且 cti 统计 ntc desc
原文地址:https://www.cnblogs.com/Tang-tangt/p/9190642.html