5、 替换空格

替换空格

一:题目描述

将一个字符串中的空格替换成 “%20”。

Input:
"A B"

Output:
"A%20B"

二:解题思路

① 在字符串尾部填充任意字符,使得字符串的长度等于替换之后的长度。因为一个空格要替换成三个字符(%20),所以当遍历到一个空格时,需要在尾部填充两个任意字符。

② 令 P1 指向字符串原来的末尾位置,P2 指向字符串现在的末尾位置。P1 和 P2 从后向前遍历,当 P1 遍历到一个空格时,就需要令 P2 指向的位置依次填充 02%(注意是逆序的),否则就填充上 P1 指向字符的值。从后向前遍是为了在改变 P2 所指向的内容时,不会影响到 P1 遍历原来字符串的内容。

③ 当 P2 遇到 P1 时(P2 <= P1),或者遍历结束(P1 < 0),退出。
在这里插入图片描述

三:代码

String

 public static String replaceAllT(String string){
        int count = 0;
        int index1 = string.length()-1;
        //先在字符串后面追加空格
        for (int i = 0; i < string.length(); i++) {
            if (' ' == (string.charAt(i))){
                count++;
            }
        }

        for (int i = 0; i < 2 * count; i++) {
            string+=" ";
        }
        int index2 = string.length()-1;

        char[] chars = string.toCharArray();

        while (true){
           //判断是否要退出
           if (index1<0||index1>=index2){
               break;
           }
            //判断
            if (chars[index1] != ' '){
                chars[index2] = chars[index1];
                index1 --;
                index2 --;
            }else{
                chars[index2] = '0';

                //向后移动
                index1--;
                index2--;
                chars[index2] = '2';
                index2--;
                chars[index2] = '%';
                index2--;
            }
        }
        String str = new String(chars);
        return str;
    }

StringBuffer

 public static String replaceSpace(StringBuffer str) {
        int P1 = str.length() - 1;
        for (int i = 0; i <= P1; i++) {
            if (str.charAt(i) == ' ') {
                str.append("  ");
            }
        }

        int P2 = str.length() - 1;
        while (P1 >= 0 && P2 > P1) {
            char c = str.charAt(P1--);
            if (c == ' ') {
                str.setCharAt(P2--, '0');
                str.setCharAt(P2--, '2');
                str.setCharAt(P2--, '%');
            } else {
                str.setCharAt(P2--, c);
            }
        }
        return str.toString();
    }
发布了24 篇原创文章 · 获赞 5 · 访问量 2056

猜你喜欢

转载自blog.csdn.net/weixin_43288447/article/details/104239546