/*
public class ListNode {
int val;
ListNode next = null;
ListNode(int val) {
this.val = val;
}
}*/
public class Solution {
public ListNode ReverseList(ListNode head) {
ListNode pre=null;
if(head==null||head.next==null){
return head;//为空或者只有一个节点直接返回即可
}
ListNode next=null;
while(head!=null){
next=head.next;
head.next=pre;
pre=head;
head=next;
}
//结束之后pre就是新链表的头结点
return pre;
}
}
public class ListNode {
int val;
ListNode next = null;
ListNode(int val) {
this.val = val;
}
}*/
public class Solution {
public ListNode ReverseList(ListNode head) {
ListNode pre=null;
if(head==null||head.next==null){
return head;//为空或者只有一个节点直接返回即可
}
ListNode next=null;
while(head!=null){
next=head.next;
head.next=pre;
pre=head;
head=next;
}
//结束之后pre就是新链表的头结点
return pre;
}
}