题解 | #字符串反转#

字符串反转

https://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String str=in.nextLine();
        StringBuilder res=new StringBuilder(str);
        System.out.println(res.reverse());
    }
}

Scanner in = new Scanner(System.in);

        String str=in.nextLine();

        StringBuilder res=new StringBuilder();

        for(int i=str.length()-1;i>=0;i--){

            res=res.append(str.charAt(i));

        }

        System.out.println(res);

对比了一下,直接使用字符串拼接字符效率最低,其次是自己写逆序方法使用append拼接,然后是使用API似乎效率更好

全部评论

相关推荐

02-25 11:29
产品经理
牛客444597598号:兄弟 我只能说如果想找产品经理这种简历 基本就是毕业失业了 你这连实习都找不到的 简历跟产品经理一点都没有关系,你可以去搜搜产品的模版吧
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务