链表算法之-反向打印单链表
2018-10-09 本文已影响0人
旭仔_2e16
思想:递归
public void reversePrint(Node p){
if (p!=null){
reversePrint(p.next);
System.out.println(p.value);
}
}
思想:递归
public void reversePrint(Node p){
if (p!=null){
reversePrint(p.next);
System.out.println(p.value);
}
}