-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsertnode at tail.py
59 lines (44 loc) · 1.45 KB
/
insertnode at tail.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
51
52
53
54
55
56
57
58
59
# # case
# First the linked list is NULL. After inserting 141, the list is 141 -> NULL.
# After inserting 302, the list is 141 -> 302 -> NULL.
# After inserting 164, the list is 141 -> 302 -> 164 -> NULL.
# After inserting 530, the list is 141 -> 302 -> 164 -> 530 -> NULL. After inserting 474, the list is 141 -> 302 -> 164 -> 530 -> 474 -> NULL, which is the final list.
# import math
# import os
# import random
# import re
# import sys
# class SinglyLinkedListNode:
# def __init__(self, node_data):
# self.data = node_data
# self.next = None
# class SinglyLinkedList:
# def __init__(self):
# self.head = None
# def print_singly_linked_list(node, sep, fptr):
# while node:
# fptr.write(str(node.data))
# node = node.next
# if node:
# fptr.write(sep)
def insertNodeAtTail(head, data):
tail = head
node = SinglyLinkedListNode(data)
if not tail:
head = node
else:
while tail.next:
tail = tail.next
tail.next = node
return head
# if __name__ == '__main__':
# fptr = open(os.environ['OUTPUT_PATH'], 'w')
# llist_count = int(input())
# llist = SinglyLinkedList()
# for i in range(llist_count):
# llist_item = int(input())
# llist_head = insertNodeAtTail(llist.head, llist_item)
# llist.head = llist_head
# print_singly_linked_list(llist.head, '\n', fptr)
# fptr.write('\n')
# fptr.close()