public static Node reverseLinklist(Node head){ Node pre=null; //pre引用(指针)指向null Node next=null; while (head!=null){ next=head.next; //next指针指向head.next指向的位置 head.next=pre; //head.next指针指向pre指向的位置 pre=head; head=next; } return pre; //返回head引用(指针) }
2023-12-04 09:48:34
public static Node reverseLinklist(Node head){ Node pre=null; //pre引用(指针)指向null Node next=null; while (head!=null){ next=head.next; //next指针指向head.next指向的位置 head.next=pre; //head.next指针指向pre指向的位置 pre=head; head=next; } return pre; //返回head引用(指针) }