博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
344. Reverse String
阅读量:5103 次
发布时间:2019-06-13

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

Write a function that takes a string as input and returns the string reversed.

Example:

Given s = "hello", return "olleh".

链接:

3/8/2017

第4行的语法要注意

1 public class Solution {2     public String reverseString(String s) {3         if (s == null || s.length() < 2) return s;4         char[] c = new char[s.length()];5         for (int i = 0; i < s.length(); i++) c[i] = s.charAt(s.length() - i - 1);6         return new String(c);7     }8 }

别人有更好的方法可参考:

转载于:https://www.cnblogs.com/panini/p/6523789.html

你可能感兴趣的文章
js forEach跳出循环
查看>>
MyBatis---动态SQL
查看>>
快速创建一个 spring mvc 示例
查看>>
swing入门教程
查看>>
好莱坞十大导演排名及其代表作,你看过多少?
查看>>
JVM-class文件完全解析-类索引,父类索引和索引集合
查看>>
Loj #139
查看>>
StringBuffer是字符串缓冲区
查看>>
hihocoder1187 Divisors
查看>>
java入门
查看>>
Spring 整合 Redis
查看>>
Azure 托管镜像和非托管镜像对比
查看>>
SQLite3初探
查看>>
多线程/多进程/异步IO
查看>>
leetcode 442. 数组中重复的数据 java
查看>>
struts2 文件上传下载注解示例
查看>>
编写一个简单的JAVA WEB Servlet页面
查看>>
JSP:Cookie实现永久登录(书本案例)
查看>>
js window.open 参数设置
查看>>
032. asp.netWeb用户控件之一初识用户控件并为其自定义属性
查看>>