-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinked_List.py
50 lines (40 loc) · 1.09 KB
/
Linked_List.py
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
# Definition for singly-linked list.
# class ListNode(object):
# def __init__(self, x):
# self.val = x
# self.next = None
def stringToListNode(input):
# Generate list from the input
numbers = json.loads(input)
# Now convert that list into linked list
dummyRoot = ListNode(0)
ptr = dummyRoot
for number in numbers:
ptr.next = ListNode(number)
ptr = ptr.next
ptr = dummyRoot.next
return ptr
def prettyPrintLinkedList(node):
import sys
while node and node.next:
sys.stdout.write(str(node.val) + "->")
node = node.next
if node:
print(node.val)
else:
print("Empty LinkedList")
def main():
import sys
def readlines():
for line in sys.stdin:
yield line.strip('\n')
lines = readlines()
while True:
try:
line = lines.next()
node = stringToListNode(line)
prettyPrintLinkedList(node)
except StopIteration:
break
if __name__ == '__main__':
main()