思想:递归
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);
}
}