-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathOddEven.java
43 lines (37 loc) · 1.16 KB
/
OddEven.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
/*https://leetcode.com/problems/odd-even-linked-list/*/
class Solution {
public ListNode oddEvenList(ListNode head) {
//edge case
if (head == null || head.next == null) return head;
ListNode oddHead = new ListNode(1);
ListNode evenHead = new ListNode(2);
ListNode oddTail = oddHead;
ListNode evenTail = evenHead;
boolean flag = true;
//keep attaching the nodes alternatively to the tails
while (head != null)
{
if (flag)
{
oddTail.next = head;
oddTail = oddTail.next;
head = head.next;
}
else
{
evenTail.next = head;
evenTail = evenTail.next;
head = head.next;
}
flag = !flag;
}
//make the last nodes point to null
if (evenTail.next == oddTail)
evenTail.next = null;
else if (oddTail.next == evenTail)
oddTail.next = null;
//attach even list to odd list tail
oddTail.next = evenHead.next;
return oddHead.next;
}
}