【剑指Offer】面试题24:反转链表

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

实现

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
32
33
/*
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 n = head;
ListNode pos = null;

// 遍历所有节点
while (n != null) {
pos = n.next;
n.next = pre;
pre = n;
n = pos;
}

return pre;
}
}