-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay_15_Linked_List.py
67 lines (51 loc) · 2.15 KB
/
Day_15_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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Objective
# Today we will work with a Linked List. Check out the Tutorial tab for learning materials and an instructional video.
# A Node class is provided for you in the editor. A Node object has an integer data field, , and a Node instance pointer, , pointing to another node (i.e.: the next node in the list).
# A Node insert function is also declared in your editor. It has two parameters: a pointer, , pointing to the first node of a linked list, and an integer, , that must be added to the end of the list as a new Node object.
# Task
# Complete the insert function in your editor so that it creates a new Node (pass as the Node constructor argument) and inserts it at the tail of the linked list referenced by the parameter. Once the new node is added, return the reference to the node.
# Note: The argument is null for an empty list.
# Input Format
# The first line contains T, the number of elements to insert.
# Each of the next lines contains an integer to insert at the end of the list.
# Output Format
# Return a reference to the node of the linked list.
# Sample Input
# STDIN Function
# ----- --------
# 4 T = 4
# 2 first data = 2
# 3
# 4
# 1 fourth data = 1
# Sample Output
# 2 3 4 1
# Explanation
# , so your method will insert nodes into an initially empty list.
# First the code returns a new node that contains the data value as the of the list. Then create and insert nodes , , and at the tail of the list.
# LinkedListExplanation.png
class Node:
def __init__(self,data):
self.data = data
self.next = None
class Solution:
def display(self,head):
current = head
while current:
print(current.data,end=' ')
current = current.next
def insert(self,head,data):
#Complete this method
node = Node(data)
if head == None:return node
current = head
while current.next:current = current.next
current.next = node
return head
mylist= Solution()
T=int(input())
head=None
for i in range(T):
data=int(input())
head=mylist.insert(head,data)
mylist.display(head);