解题思路:迭代的思想,pre指向head的前一个结点,q指向head的下一个结点,依次循环,知道head为空。
public class Solution {
public ListNode ReverseList(ListNode head) {
if(head==null)
return head;
ListNode pre=null,q=null;
while(head!=null){
q = head.next;
head.next = pre;
pre = head;
head = q;
}
return pre;
}
}