思想:递归
public void reversePrint(Node p){ if (p!=null){ reversePrint(p.next); System.out.println(p.value); } }
本文标题:链表算法之-反向打印单链表
本文链接:https://www.haomeiwen.com/subject/npcyaftx.html
网友评论