To create a Linked List in Python we will create a class Node that will allocate data and a null reference.
Whenever we want to insert an item we will create an object of Node class by providing data of the node and assigning the next pointer/reference as null. We will update this reference to point to the next node later. Creating an object of a class will allocate the instance in the memory.
After this, we will create a Linked List class to connect all the nodes together to form the data structure using references.
Linked List class is empty initially. It has a head pointer with a null reference initially. We will create an object of this linked list class and in the next tutorial insert some nodes in this linked list and also updating references.
🔗Important Links:
Python Basics: • Python Programming
Data Structures in Python: • Data Structures in Python
🌐Join our community:
Android App(Notes+Videos): https://play.google.com/store/apps/de... Facebook: / thinkxacademy Twitter: / thinkxacademy Instagram: / thinkxacademy
#datastructures #python #programming