标签:out java style null cookie public nbsp int list
递归
package cookie; public class PrintListReversal { public void reversalOut(Node head) { if (head != null) { if (head.next != null) { reversalOut(head.next); } System.out.println(head); } } }
标签:out java style null cookie public nbsp int list
原文地址:http://www.cnblogs.com/chenhuanBlogs/p/7660130.html