forked from forging2012/JavaArithmetic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLeetCode206.java
More file actions
51 lines (38 loc) · 1.18 KB
/
LeetCode206.java
File metadata and controls
51 lines (38 loc) · 1.18 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package LeetCode;
public class LeetCode206 {
// https://leetcode.com/problems/reverse-linked-list/description/
// 时间复杂度: O(n)
// 空间复杂度: O(1)
// Definition for singly-linked list.
public class ListNode {
int val;
ListNode next;
ListNode(int x) { val = x; }
}
public ListNode reverseList(ListNode head) {
ListNode pre = null;
ListNode cur = head;
while(cur != null){
ListNode next = cur.next;
cur.next = pre;
pre = cur;
cur = next;
}
return pre;
}
// 递归方式
public ListNode reverseList2(ListNode head) {
// 递归终止条件
if(head == null|| head.next == null)
return head;
// head==1 --->head==2 return head ==2
ListNode rhead = reverseList2(head.next);
// head->next此刻指向head后面的链表的尾节点
// head->next->next = head把head节点放在了尾部
// TODO 最后一个节点指向倒数第二个节点
head.next.next = head;
// 最后一个节点指向null
head.next = null;
return rhead;
}
}