-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathReorderList143.java
152 lines (125 loc) · 3.73 KB
/
ReorderList143.java
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/**
* Given a singly linked list L: L0?L1?…?Ln-1?Ln,
* reorder it to: L0?Ln?L1?Ln-1?L2?Ln-2?…
*
* You must do this in-place without altering the nodes' values.
*
* For example,
* Given {1,2,3,4}, reorder it to {1,4,2,3}.
*/
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
public class ReorderList143 {
public void reorderList(ListNode head) {
if (head == null || head.next == null || head.next.next == null) return;
ListNode fast = head;
ListNode slow = head;
Stack<ListNode> st = new Stack<>();
while (fast.next != null && fast.next.next != null) {
st.push(slow);
slow = slow.next;
fast = fast.next.next;
}
ListNode dummy = new ListNode(0);
ListNode half = new ListNode(0);
if (fast.next == null) {
half = slow.next;
dummy.next = slow;
dummy.next.next = null;
} else if (fast.next.next == null) {
half = slow.next.next;
dummy.next = slow;
dummy.next.next.next = null;
}
while (half != null) {
ListNode newNode = half;
half = half.next;
newNode.next = dummy.next;
dummy.next = newNode;
newNode = st.pop();
newNode.next = dummy.next;
dummy.next = newNode;
}
head = dummy.next;
}
/**
* https://discuss.leetcode.com/topic/13869/java-solution-with-3-steps
*/
public void reorderList2(ListNode head) {
if(head==null||head.next==null) return;
//Find the middle of the list
ListNode p1=head;
ListNode p2=head;
while(p2.next!=null&&p2.next.next!=null){
p1=p1.next;
p2=p2.next.next;
}
//Reverse the half after middle 1->2->3->4->5->6 to 1->2->3->6->5->4
ListNode preMiddle=p1;
ListNode preCurrent=p1.next;
while(preCurrent.next!=null){
ListNode current=preCurrent.next;
preCurrent.next=current.next;
current.next=preMiddle.next;
preMiddle.next=current;
}
//Start reorder one by one 1->2->3->6->5->4 to 1->6->2->5->3->4
p1=head;
p2=preMiddle.next;
while(p1!=preMiddle){
preMiddle.next=p2.next;
p2.next=p1.next;
p1.next=p2;
p1=p2.next;
p2=preMiddle.next;
}
}
/**
* https://discuss.leetcode.com/topic/18092/java-solution-with-3-steps
*/
public void reorderList3(ListNode head) {
if (head == null || head.next == null)
return;
// step 1. cut the list to two halves
// prev will be the tail of 1st half
// slow will be the head of 2nd half
ListNode prev = null, slow = head, fast = head, l1 = head;
while (fast != null && fast.next != null) {
prev = slow;
slow = slow.next;
fast = fast.next.next;
}
prev.next = null;
// step 2. reverse the 2nd half
ListNode l2 = reverse(slow);
// step 3. merge the two halves
merge(l1, l2);
}
ListNode reverse(ListNode head) {
ListNode prev = null, curr = head, next = null;
while (curr != null) {
next = curr.next;
curr.next = prev;
prev = curr;
curr = next;
}
return prev;
}
void merge(ListNode l1, ListNode l2) {
while (l1 != null) {
ListNode n1 = l1.next, n2 = l2.next;
l1.next = l2;
if (n1 == null)
break;
l2.next = n1;
l1 = n1;
l2 = n2;
}
}
}