-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy path0328-odd-even-linked-list.py
More file actions
39 lines (33 loc) · 949 Bytes
/
0328-odd-even-linked-list.py
File metadata and controls
39 lines (33 loc) · 949 Bytes
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
# time complexity: O(n)
# space complexity: O(1)
from typing import Optional
class ListNode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
class Solution:
def oddEvenList(self, head: Optional[ListNode]) -> Optional[ListNode]:
if head is None:
return None
odd, even = ListNode(0), ListNode(0)
evenHead = even
oddHead = odd
idx = 1
while head:
if idx % 2 == 1:
odd.next = head
odd = odd.next
else:
even.next = head
even = even.next
idx += 1
head = head.next
even.next = None
odd.next = evenHead.next
return oddHead.next
root = ListNode(1)
root.next = ListNode(2)
root.next.next = ListNode(3)
root.next.next.next = ListNode(4)
root.next.next.next.next = ListNode(5)
print(Solution().oddEvenList(root))