Inserting/Adding Elements After The Given Node in The Linked List | Python Program

Publié le: 02 octobre 2020
sur la chaîne: Amulya's Academy
84,984
1.5k

In this Python Programming video tutorial you will learn about how to implement Linked List data structure in python in detail.

Data structure is a way of storing and organising the data so that it can be accessed effectively.
Linked List is a linear data structure made up of chain of nodes in which each node contains a data field and link or reference.

To implement Singly Linked List we are using class concepts here.

Program:
def add_after(self,data,x):
n = self.head
while n is not None:
if x==n.data:
break
n = n.ref
if n is None:
print("node is not presesnt in LL")
else:
new_node = Node(data)
new_node.ref = n.ref
n.ref = new_node

#DataStructures #PythonPrograms #LinkedList

For more free tutorials on computer programming
  / amulsacademy  
twitter.com/AmulsAcademy


Sur cette page du site, vous pouvez voir la vidéo en ligne Inserting/Adding Elements After The Given Node in The Linked List | Python Program durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Amulya's Academy 02 octobre 2020, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 84,984 fois et il a aimé 1.5 mille téléspectateurs. Bon visionnage!