• Java 练习(将字符串中指定部分进行反转)


    将一个字符串进行反转。将字符串中指定部分进行反转。比如"abcdefg"反转为"abfedcg"

    package com.klvchen.exer;
    
    import org.junit.Test;
    
    public class StringDemo {
        /*
        将一个字符串进行反转。将字符串中指定部分进行反转。比如"abcdefg"反转为"abfedcg"
    
        方式一: 转化为 char[]
         */
        public String reverse(String str, int startIndex, int endIndex){
    
            if (str != null && str.length() != 0){
                char[] arr = str.toCharArray();
                for (int x = startIndex, y = endIndex; x < y; x++, y--){
                    char temp = arr[x];
                    arr[x] = arr[y];
                    arr[y] = temp;
                }
    
                return new String(arr);
            }
            return null;
        }
    
        //方式二: 使用 String 的拼接
        public String reverse1(String str, int startIndex, int endIndex){
            if (str != null){
                String reverseStr = str.substring(0, startIndex);
    
                for (int i = endIndex; i >= startIndex; i--){
                    reverseStr += str.charAt(i);
                }
    
                reverseStr += str.substring(endIndex + 1);
    
                return reverseStr;
            }
            return null;
        }
        //方式三: 使用 StringBuffer/StringBuilder 替换 String
        public String reverse2(String str, int startIndex, int endIndex){
            if (str != null){
                StringBuffer builder = new StringBuffer(str.length());
    
                builder.append(str.substring(0, startIndex));
    
                for (int i = endIndex; i >= startIndex; i--){
                    builder.append(str.charAt(i));
                }
    
                builder.append(str.substring(endIndex + 1));
    
                return builder.toString();
            }
            return null;
        }
    
        @Test
        public void testReverse(){
            String str = "abcdefg";
    //        String reverse = reverse(str, 2, 5);
    //        String reverse = reverse1(str, 2, 5);
            String reverse = reverse2(str, 2, 5);
            System.out.println(reverse);
        }
    
    }
    

  • 相关阅读:
    js代码与html代码分离示例
    day24_Nginx学习笔记
    bookStore商城开发文档
    API Management Architecture Notes
    Taking A Fresh Look At What Open Source API Management Architecture Is Available
    使用API Gateway
    Qcon2017实录|Service Mesh:下一代微服务
    聊聊 API Gateway 和 Netflix Zuul
    项目长期运维中产生的一些问题
    忆情天书的由来
  • 原文地址:https://www.cnblogs.com/klvchen/p/15216762.html
Copyright © 2020-2023  润新知