博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
lintcode : 空格替换
阅读量:4582 次
发布时间:2019-06-09

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

题目:

设计一种方法,将一个字符串中的所有空格替换成 %20 。你可以假设该字符串有足够的空间来加入新的字符,且你得到的是“真实的”字符长度。

样例

对于字符串"Mr John Smith", 长度为 13

替换空格之后的结果为"Mr%20John%20Smith"

注意

如果使用 Java 或 Python, 程序中请用字符数组表示字符串。

解题:

表示做到的通过率最低的一道题。。。。

用java的字符串链接起来,然后toCharArray,然后出去接个和之前的一样,原来%20 表示的是一个空格。。。。。。。,直接在原char字符数组上操作,先求新的字符串数组的长度,再从后插入%20,这样就解决了,对于从后插入求解的碰到过,题目都会给这样的提示:假设该字符串有足够的空间来加入新的字符,要根据题目找答案,找思路。

Java程序:

public class Solution {    /**     * @param string: An array of Char     * @param length: The true length of the string     * @return: The true length of new string     */    public int replaceBlank(char[] string, int length) {        // Write your code here        int reallen = length;        for(int i = 0;i
= 0 ;i-- ){ if(string[i] == ' '){ string[--index] = '0'; string[--index] = '2'; string[--index] = '%'; }else{ string[--index] = string[i]; } } return reallen; }}
View Code

总耗时: 1137 ms

Python程序:

class Solution:    # @param {char[]} string: An array of Char    # @param {int} length: The true length of the string    # @return {int} The true length of new string    def replaceBlank(self, string, length):        # Write your code here        if string==None:            return None         reallen = length        for si in string:            if si==' ':                reallen += 2        index = reallen         for i in range(length-1,-1,-1):            if string[i] == ' ':                index -= 1                string[ index ] = '0'                index -= 1                string[ index ] = '2'                 index -= 1                string[ index ] = '%'             else:                index -= 1                 string[ index ] = string[i]         return reallen
View Code

总耗时: 393 ms

转载于:https://www.cnblogs.com/theskulls/p/4889209.html

你可能感兴趣的文章
CAShapeLayer
查看>>
ACM_夏天到了,又到了出游的季节
查看>>
【转载】HTTP 错误 500.19 - Internal Server Error
查看>>
2015 Multi-University Training Contest 3 hdu 5325 Crazy Bobo
查看>>
SQL Server 存储图片
查看>>
php特级课---4、网站服务监控(常用网站服务监控软件有哪些)
查看>>
ubuntu14.04 boost 1.58.0 安裝
查看>>
漏洞基本概念
查看>>
直角三角形 (Standard IO)
查看>>
web 12
查看>>
Centos7安装Nginx
查看>>
探讨在线支付平台支付接口的设计
查看>>
【设计模式】常用设计模式总结
查看>>
.NET中的六个重要概念
查看>>
二十九、简谈设计模式
查看>>
js中数组的检测方法
查看>>
[译]GotW #6a: Const-Correctness, Part 1
查看>>
JAVA基础学习之 Map集合、集合框架工具类Collections,Arrays、可变参数、List和Set集合框架什么时候使用等(4)...
查看>>
用Python学分析 - 单因素方差分析
查看>>
2018个人年终总结
查看>>