【题目描述】
Write a method to replace all spaces in a string with%20. The string is given in a characters array, you can assume it has enough space for replacement and you are given the true length of the string.
You code should also return the new length of the string after replacement.
Notice:If you are using Java or Python,please use characters array instead of string.
设计一种方法,将一个字符串中的所有空格替换成%20。你可以假设该字符串有足够的空间来加入新的字符,且你得到的是“真实的”字符长度。
你的程序还需要返回被替换后的字符串的长度。
【注】如果使用 Java 或 Python, 程序中请用字符数组表示字符串。
【题目链接】
www.lintcode.com/en/problem/space-replacement/
【题目解析】
先统计字符串中含有的空格数A,设原来长度为len,则最终字符串长度为len+A*2。
原问题转换成一个两点移动问题。设一个指针P1指向最终字符串尾部,另一个P2指向原字符串尾部
分析P2字符:
如果不是空格,P2字符复制到P1,P1、P2左移
如果是空格,P1填入三位%20,总供左移了3位,而P2左移1位
按3步骤不断操作,最终两指针一定会在字符串0索引位重合。
【参考答案】