单链表逆序
public static Node reverseLinklist(Node head){ Node p=null; //p引用(指针)指向null Node m=null; while (head!=null){ p=head.next; //p引用指向next指向的位置 head.next=m; //next引用m指向的位置 m=head; head=p; } return m; //返回head引用(指针) }