博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[CareerCup] 1.4 Replace Spaces 替换空格
阅读量:5030 次
发布时间:2019-06-12

本文共 1260 字,大约阅读时间需要 4 分钟。

 

1.4 Write a method to replace all spaces in a string with '%20'. You may assume that the string has sufficient space at the end of the string to hold the additional characters, and that you are given the "true" length of the string. (Note: if implementing in Java, please use a character array so that you can perform this operation in place.)

 

这道题让我们将一个字符串里所有的空格都替换为'%20',而且说明最好用in place的方法,就是说不要建新的字符串。如果建个新的字符,那这题解法就显得略low,因为那样我们只需要遍历原字符串s,遇到字符直接加进来,遇到空格,直接加个'%20'就行了。这道题要使用高大上的in place的方法,那就是我们先便利一遍给定字符串s,统计空格的个数,然后再resize一下字符串,增大字符串s的容量,以便我们来替换。然后我们再从原来s的末尾位置向开头遍历,遇到空格,在末尾三个空添加'%20',然后标示新位置,遇到非空格字符,则添加该字符,然后再标示新位置即可。代码如下:

 

class Solution {public:    void replaceSpaces(string &s) {        int count = 0, len = s.size(), newLen = 0;        for (int i = 0; i < len; ++i) {            if (s[i] == ' ') ++count;        }        newLen = len + 2 * count;        s.resize(newLen);        for (int i = len - 1; i >= 0; --i) {            if (s[i] == ' ') {                s[newLen - 1] = '0';                s[newLen - 2] = '2';                s[newLen - 3] = '%';                newLen -= 3;            } else {                s[newLen - 1] = s[i];                newLen -= 1;            }           }    }};

 

转载于:https://www.cnblogs.com/grandyang/p/4650780.html

你可能感兴趣的文章
S1的小成果:MyKTV系统
查看>>
从setting文件导包
查看>>
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
union和union all
查看>>
Github 开源:使用控制器操作 WinForm/WPF 控件( Sheng.Winform.Controls.Controller)
查看>>
PMD使用提醒
查看>>
Codeforces 887D Ratings and Reality Shows
查看>>
论文《A Generative Entity-Mention Model for Linking Entities with Knowledge Base》
查看>>
CentOS 6.7编译安装PHP 5.6
查看>>
Linux记录-salt分析
查看>>
Android Studio默认快捷键
查看>>
发布开源库到JCenter所遇到的一些问题记录
查看>>
第七周作业
查看>>
函数式编程与参数
查看>>
flush caches
查看>>
SSAS使用MDX生成脱机的多维数据集CUB文件
查看>>
ACM_hdu1102最小生成树练习
查看>>
MyBatis源码分析(一)--SqlSessionFactory的生成
查看>>
android中ListView点击和里边按钮或ImageView点击不能同时生效问题解决
查看>>
CTF常用工具之汇总
查看>>