[leetcode] 344.Reverse String
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode] 344.Reverse String相关的知识,希望对你有一定的参考价值。
Write a function that takes a string as input and returns the string reversed.
Example:
Given s = "hello", return "olleh".
即反转字符串,逆序遍历依次append到StringBuffer即可
一刷:
public String reverseString(String s) { StringBuffer sb=new StringBuffer(); for(int i=0;i<s.length();i++){ sb.append(s.charAt(s.length()-1-i)); } return sb.toString(); }
以上是关于[leetcode] 344.Reverse String的主要内容,如果未能解决你的问题,请参考以下文章