Inserting/Adding Elements At The Beginning Of The Linked List | Python Program

preview_player
Показать описание
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_begin(self,data):
new_node = Node(data)

#DataStructures #PythonPrograms #LinkedList

For more free tutorials on computer programming
Рекомендации по теме
Комментарии
Автор

I couldn't find a better video on Linkedlist data structure in Python Language for begineers anywhere on Youtube than this. Thank you so much.

majidalich
Автор

Even though i didnt check any previous comment in your this tutorial videos but i can say with 100% confidence if anyone who is struggling to understand with data structure concept and by mistaken found your videos then definately that person will write something good for you....Like i am writing here, I am huge fann of your teaching style, the way you clear all the concepts whether its minor or major, Its really appreciable Mam... Lots of thanks mam....I was struggling for a long time to understand the concepts of DS. Finally i met AMULYA'S ACADEMY... I thank to god as well that i met with AMULYA'S ACADEMY. Your effort, your way of teaching, your story telling technique...Everything is perfect like Impeccable....Keep it Up mam !!
Thank You So Much !!

ameerahmar
Автор

this series is so underrated and extremelyy good

waitwatch
Автор

thank you could'nt understand linked list before but because of your explanation it has become easy

ankitashelke
Автор

I like the way you are visualizing everything! You explains so well!

xinyunwang
Автор

love your work. You have taught these concepts in a really simple manner.

SuperSandman
Автор

Great explanation, simple to understand thank you!

Pete-pz
Автор

best explanation available on internet!

nandithass
Автор

outstanding work cleaverly done i am very confident none lecture can beat this lecture on linked list i say again none !!!! Amazing stuff Didi God bless you and keep provide amazing lectures like this.

funfact
Автор

Thanks, your series are making it so easy for me to understand everything :D

hermanunspieters
Автор

Mam complete data structures and algorithms fastly, ,u r doing great job, i support u r channel

pavankumar
Автор

Thank you soo much mam .Before I fell very hard about implementation of data structures
You changed it and made it easy and understandable great work thank you

Arvindh-xplt
Автор

Excellent explanation. Easy and understandable. Great. Many thanks!

mister_bake
Автор

Big applause for your work, I am looking for this type of explanation
Thanks for this content

anubhavsingh
Автор

Thank you so much ma'am. This is one of the best data structures series I ever watch.

sakhawatdhrubo
Автор

very nice explanation. my doubts were cleared when u showed that every node has a reference by printing it...

darkxxslayer
Автор

You are simply awesome 🤝 explaining difficult topics more clearly.. huge fan of you mam!!

sudeepdeep
Автор

Your way of explaining the pgm is really good mam .. Keep Going on ...

getinspired
Автор

You are great explaining, It is very easy to understand, One thing i have to request that give the notes as wel.

sumitsubham
Автор

thank you for the very good explanation, however I have a question.
how can the program distinguish between the data and the address in a node, for example
while n is not None:
print(n.data)
n=n.ref
I know that node is 2 parts, but we didnt assign the parts to particular variables

tareqoweinat