码迷,mamicode.com
首页 > 其他好文 > 详细

Algorithm

时间:2014-07-03 20:02:31      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   strong   2014   

@1:倒序打印一个单链表:

递归实现,先递归再打印就变成倒序打印了。

public static <T> void reverseRead1(SLNode<T> node) {
    if (node != null) {
        reverseRead1(node.getNext());
        System.out.print(node.getValue() + "\t");
    }
}

 

 

参考文章:

15道简单算法题http://www.cnblogs.com/hlxs/archive/2014/06/06/3772333.html

 

 

 

Algorithm,布布扣,bubuko.com

Algorithm

标签:style   blog   http   color   strong   2014   

原文地址:http://www.cnblogs.com/lxw0109/p/Algorithm.html

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