码迷,mamicode.com
首页 > 编程语言 > 详细

使用递归算法反转字符串

时间:2014-11-06 09:15:31      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   使用   sp   div   log   bs   

public class T {
    //反转字符串
    public static String reverseString(String s){
        if(s.isEmpty()) return s;
        return reverseString(s.substring(1))+s.charAt(0);
    }
    
    public static void main(String[] args) {
        System.out.println(reverseString("123456789"));
    }
}

 

使用递归算法反转字符串

标签:style   blog   color   ar   使用   sp   div   log   bs   

原文地址:http://www.cnblogs.com/Nbge/p/4077824.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!