剑指Offer_15

题目

输入一个链表,反转链表后,输出链表的所有元素。

解题思路

三个指针来记录位置,反转链表。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
public class ListNode {
int val;
ListNode next = null;
ListNode(int val) {
this.val = val;
}
}*/
public class Solution {
public ListNode ReverseList(ListNode head) {
if(head == null || head.next == null){
return head;
}
ListNode pre = null;
ListNode cur = head;
ListNode post = head.next;
while(post != null){
cur.next = pre;
pre = cur;
cur = post;
post = post.next;
}
//循环退出条件post == null
//最后一个节点还未指向它的前一节点
cur.next = pre;
return cur;
}
}