递归package cookie; public class PrintListReversal { public void reversalOut(Node head) { if (head != null) { if (head.next != null) { reversalOut(head.next); } System.out.println(head); } } }