美文网首页
链表算法之-反向打印单链表

链表算法之-反向打印单链表

作者: 旭仔_2e16 | 来源:发表于2018-10-09 16:24 被阅读0次

    思想:递归

        public void reversePrint(Node p){
            if (p!=null){
                reversePrint(p.next);
                System.out.println(p.value);
            }
        }
    

    相关文章

      网友评论

          本文标题:链表算法之-反向打印单链表

          本文链接:https://www.haomeiwen.com/subject/npcyaftx.html