P44、面试题4:替换空格
题目:请实现一个函数,把字符串中的每个空格替换成“%20”。例如输入“We are happy.”,则输出“We%20are%20happy.”。 |
如果用java string类中提供的replace方法可以很快的进行替换。
代码实现:
package com.yyq; /**
* Created by Administrator on 2015/9/4.
*/
public class ReplaceBlank {
public static void main(String args[]){
String str = "we are happy";
String newStr = str.replace(" ","%20");
System.out.println(newStr);
}
}
如果是按照很原始的方法进行替换的话,里面包含着大技巧。
我们可以先遍历一次字符串,这样就能统计出字符串中空格的总数,并可以由此计算出替换之后的字符串的总长度。每替换一个空格,长度增加2,因此替换以后字符串的长度等于原来长度加上2乘以空格数目。从字符串的后面开始复制和替换,直到都走到字符串首位。
代码实现:
package com.yyq; import java.util.Arrays; /**
* Created by Administrator on 2015/9/4.
*/
public class ReplaceBlank {
private static int maxLength = 100; //length 为字符数组string的总容量,新增长的数组长度不能超过length
public static void repalceBlank(String str, int trueLength, int maxLength) {
if (str == null || maxLength <= 0) {
return;
}
//如果是传统的静态数组,java中是不允许动态扩充的,如果需要扩充的话,则需要使用java自带的累积框架,如List
char oldString[] = str.toCharArray();
int numberBlank = 0;
int i = 0;
while (i < trueLength) {
if (oldString[i] == ' ') {
numberBlank++;
}
i++;
} int newLength = trueLength + numberBlank * 2;
//新开辟一个数组
char newString[] = new char[newLength];
for (int j = 0; j < newLength; j++) {
newString[j] = 0;
}
if (newLength > maxLength) {
return;
}
int indexOld = trueLength - 1;
int indexNew = newLength - 1;
while (indexOld >= 0 && indexOld <= indexNew) {
if (oldString[indexOld] == ' ') {
newString[indexNew] = '0';
indexNew--;
newString[indexNew] = '2';
indexNew--;
newString[indexNew] = '%';
indexNew--;
} else {
newString[indexNew--] = oldString[indexOld];
}
indexOld--;
}
System.out.println(new String(newString));
}
public static void Test(String testName, String str) {
if (str == null) return;
if (testName != null) {
System.out.println(testName + "======");
repalceBlank(str, str.length(), maxLength);
}
} // 空格在句子中间
public void Test1()
{
String str = "ab c";
Test("Test1(空格在句子中间)", str);
} // 空格在句子开头
public void Test2()
{
String str = " helloworld";
Test("Test2(空格在句子开头)", str);
} // 空格在句子末尾 public void Test3()
{
String str = "helloworld ";
Test("Test3(空格在句子末尾)", str);
} // 连续有两个空格
public void Test4()
{
String str = "hello world";
Test("Test4(连续有两个空格)", str);
} // 传入NULL
public void Test5()
{
Test("Test5(传入null)", null);
} // 传入内容为空的字符串 public void Test6()
{
String str = "";
Test("Test6传入内容为空的字符串", str);
} //传入内容为一个空格的字符串
public void Test7()
{
String str = " ";
Test("Test7(传入内容为一个空格的字符串)", str);
} // 传入的字符串没有空格
public void Test8()
{
String str = "helloworld";
Test("Test8(传入的字符串没有空格)", str);
} // 传入的字符串全是空格
public void Test9()
{
String str = " ";
Test("Test9(传入的字符串全是空格)", str);
} public static void main(String[] args) {
// TODO Auto-generated method stub
ReplaceBlank test = new ReplaceBlank();
test.Test1();
test.Test2();
test.Test3();
test.Test4();
test.Test5();
test.Test6();
test.Test7();
test.Test8();
test.Test9();
}
}
输出结果:
Test1(空格在句子中间)====== ab%20c Test2(空格在句子开头)====== %20helloworld Test3(空格在句子末尾)====== helloworld%20 Test4(连续有两个空格)====== hello%20%20world Test6传入内容为空的字符串====== Test7(传入内容为一个空格的字符串)====== %20 Test8(传入的字符串没有空格)====== helloworld Test9(传入的字符串全是空格)====== %20%20%20 |
P44、面试题4:替换空格的更多相关文章
- 【剑指offer】面试题 5. 替换空格
面试题 5. 替换空格 题目:请实现一个函数,将一个字符串中的空格替换成"%20".例如,当字符串为We Are Happy. 则经过替换之后的字符串为We%20Are%20Hap ...
- 剑指Offer:面试题4——替换空格(java实现)
问题描述:请实现一个函数,把字符串中的每个空格替换成"%20". 例如: 输入:"We are happy." 输出:"We%20are%20happ ...
- C++版 - 剑指offer 面试题4: 替换空格 题解
面试题4:替换空格 提交网址: http://www.nowcoder.com/practice/4060ac7e3e404ad1a894ef3e17650423?tpId=13&tqId=1 ...
- 剑指offer编程题Java实现——面试题4替换空格
题目描述 请实现一个函数,将一个字符串中的空格替换成“%20”.例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy. package Solution; ...
- 剑指offer-面试题4.替换空格
题目:请实现一个函数,把字符串中的每个空格都替换成"%20".例如输入"We are happy." 则输出"We%20are%20happy.&qu ...
- 剑指offer面试题4 替换空格(java)
注:利用java中stringBuilder,append,length方法很方便的解决字符串问题 /* * 剑指offer 替换空格 * xsf * */ /*开始替换空格的函数,length为原数 ...
- 剑指offer面试题4 替换空格(c)
- 面试题04_替换空格_剑指Offer系列
题目描写叙述 请实现一个函数,将一个字符串中的空格替换成"%20". 比如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy. 解题思路 ...
- 《剑指offer》面试题4 替换空格 Java版
(给一个足够长的字符数组,其中有一段字符,将' '(空格)替换成'%' '2' '0'三个字符,原字符段由'\0'结尾) 书中方法:这道题如果从头到尾扫描数组并替换,会涉及到数组的移动.如果不移动元素 ...
- 【剑指Offer】面试题05.替换空格
题目 请实现一个函数,把字符串 s 中的每个空格替换成"%20". 示例 1: 输入:s = "We are happy." 输出:"We%20are ...
随机推荐
- 反编译.o到.cpp
反编译.o到.cpp 现在有很多反编译是对Java的,而.cpp的很少 因为不同的平台.cpp生成的.o是不一样的,但是Java因为有虚拟机的中间作用,生成的.o在不同平台是一样的 反编译的机理 (通 ...
- 第一个C++
输入:cin>>(相当于scanf) #include <iostream> using namespace std; int main() { int number; ...
- angular $q服务的用法
Promise是一种和callback有类似功能却更强大的异步处理模式,有多种实现模式方式,比如著名的Q还有JQuery的Deffered. 什么是Promise 以前了解过Ajax的都能体会到回调的 ...
- Looper Handler 多线程
Looper is created by default on main UI Property: // main ui thread, if Looper is initiali ...
- zhuan:ubuntu下安装Apache2+php+Mysql
from: http://www.cnblogs.com/lynch_world/archive/2012/01/06/2314717.html ubuntu下安装Apache+PHP+Mysql 转 ...
- 使用JS来实现验证码功能
最近想为自己的Django博客添加验证码功能,本来想使用第三方库来实现的,不过考虑到添加第三方库对性能的影响,以及第三方库是否安全可靠的问题,还是用自己的代码来实现吧.反正用JS来实现验证码功能又不是 ...
- oracle游标小试
有时候需要大面积的修改数据,这个时候用循环语句效率不高.而临时表又不能满足点对点修改的时候,游标似一种不错的选择(PS:好像游标也是为循环而生的吧) 现在有两张表 t1(ryid number,nam ...
- There is a legend about a bird
There is a legend about a bird which sings just once in its life, more sweetly than any other ...
- Java Timer, TimerTask
参考:http://batitan.iteye.com/blog/253483 TimerTask 就是一个run 方法,里边有些操作: Timer 是个线程,按各种调度方法(Timer.schedu ...
- 监控SQL Server的job执行情况
在服务器没有设置发邮件并且不允许发邮件的情况下, 可以通过下列语句来检查SQL Server 的job的执行情况 select top 150 a.run_date,a.run_time, b.nam ...