Тёмный

2.5 Insertion of a Node in Linked List(at Beginning,End,Specified Position)with Code | DSA Tutorials 

Jenny's Lectures CS IT
Подписаться 1,7 млн
Просмотров 1,2 млн
50% 1

In this video we will see how to Insert a node in linked list - at beginning, at end and at any given position with example. we will also write a C program for insertion operation.
DSA Full Course: https: • Data Structures and Al...
******************************************
See Complete Playlists:
C Programming Course: • Programming in C
C++ Programming: • C++ Complete Course
Python Full Course: • Python - Basic to Advance
Printing Pattern in C: • Printing Pattern Progr...
DAA Course: • Design and Analysis of...
Placement Series: • Placements Series
Dynamic Programming: • Dynamic Programming
Operating Systems: // • Operating Systems
DBMS: • DBMS (Database Managem...
*************************************************
Connect & Contact Me:
Facebook: / jennys-lectures-csit-n...
Quora: www.quora.com/...
Instagram: / jayantikhatrilamba
#datastructurenotes
#whatislinkedlist
#insertioninlinkedlist
#algorithms
#dsa

Опубликовано:

 

13 авг 2019

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 919   
@19_sanketharvande25
@19_sanketharvande25 3 года назад
You are one of the finest teachers . I am completing my data structure subject as I am in Computer Engineering 2nd year , by watching your all the videos by sequentially to not to miss any concepts. And I am getting all the concepts very clearly and undoubtedly I would just like to say Thank you very much for all these video lectures . Thank you very very much Jenny Ma'am 🙏✌
@celebratinglife803
@celebratinglife803 Год назад
are you placed now bro?
@shivanidubey6182
@shivanidubey6182 Год назад
@@celebratinglife803 mai bhi yhi puchhne vala tha😂😂
@sathwikgunder8713
@sathwikgunder8713 7 месяцев назад
@@celebratinglife803 🔥😂
@emmanuelkaome7153
@emmanuelkaome7153 3 года назад
Ma'am, This is the best channel on RU-vid followed by NESO academy , l have encountered so far. Thank you kindly for your explanations.
@Mojit00
@Mojit00 Год назад
Neso academy 💪🙏
@mdsharique2386
@mdsharique2386 Год назад
Saurabh shukla sir
@A-ONE991
@A-ONE991 Год назад
@@Mojit00 absolutely 💯
@sllanguageschool147
@sllanguageschool147 Год назад
But in terms of thus DSA, this chnnel is better than neso academy too
@talkingwithmemo
@talkingwithmemo Год назад
@TheJayshree11
@TheJayshree11 4 года назад
Hello Jenny ma'am, I really want to appreciate your efforts for teaching us ad giving exactly the same feeling of learning in a class. I am a software engineer with electronics engineering background. Your lesson are really helping me to understand fundamentals and motivates me that I can also understand data structure and algorithms. Thank you so much ma'am. 🤗🙏
@avhilashsethi1126
@avhilashsethi1126 3 года назад
9:16 : code for beginning 17:00 : code for end 26:00 : code for after given location
@yomifkumsisabededa3469
@yomifkumsisabededa3469 2 года назад
thanks a lot !
@yashparmar5722
@yashparmar5722 Год назад
Thanks
@bikashsantra4002
@bikashsantra4002 2 года назад
Complete code : #include #include // Function declaration void at_beginning(); void at_end(); void at_position(int); void display(); struct node { int data; struct node *next; }; struct node *head; struct node *newnode; struct node *temp; ; // main() int main() { int choice = 1; head = 0; int count; int a; while (choice) { newnode = (struct node *)malloc(sizeof(struct node)); newnode->next = 0; printf("Enter the data you want to insert : "); scanf("%d", &newnode->data); if (head == 0) { head = temp = newnode; } else { temp->next = newnode; temp = newnode; } printf("Do you want to continue (1/0)? : "); scanf("%d", &choice); } temp = head; while (temp != 0) { temp = temp->next; count++; //-----> can be printed as length of the linked list } printf("Which operation do you want to perform ? press 1 ----> insert at the beginning press 2 ----> insert at the end press 3 ----> insert at specific position press 4 ----> To Display the Linked list "); scanf("%d", &a); switch (a) { case 1: at_beginning(); display(); break; case 2: at_end(); display(); break; case 3: at_position(count); display(); break; case 4: display(); break; } return 0; } void at_beginning() { temp = head; newnode = (struct node *)malloc(sizeof(struct node)); printf("Enter the data for insert at the beginning : "); scanf("%d", &newnode->data); newnode->next = 0; newnode->next = head; head = newnode; } void at_end() { temp = head; newnode = (struct node *)malloc(sizeof(struct node)); printf("Enter the data for insert at the end : "); scanf("%d", &newnode->data); newnode->next = 0; while (temp->next != 0) { temp = temp->next; } temp->next = newnode; } void at_position(int count) { int pos, i = 1; temp = head; newnode = (struct node *)malloc(sizeof(struct node)); printf("Enter the data for insert at a position : "); scanf("%d", &newnode->data); newnode->next = 0; printf("Enter the position where you want to insert : "); scanf("%d", &pos); if (pos count) { printf("Can't be modified "); } else { while (i < pos-1) { temp = temp->next; i++; } newnode->next = temp->next; temp->next = newnode; } } // Printing the Linked list void display() { temp = head; printf("Your Linked list is : "); while (temp != 0) { printf("%d\t", temp->data); temp = temp->next; } }
@jecodedoncjesuis875
@jecodedoncjesuis875 2 года назад
awsome !!!
@ruchitakumari891
@ruchitakumari891 Год назад
Hey, thanks a lot🤩
@mohamedthoufiqm8108
@mohamedthoufiqm8108 Год назад
👍🏿
@kunaljadhav2963
@kunaljadhav2963 Год назад
Thanks
@prashanthiguntaka1416
@prashanthiguntaka1416 11 месяцев назад
If we insert at beginning or ending counter variable is not increased
@LaysaBit
@LaysaBit 3 года назад
Just subscribed to her! I'll pass my college years watching her videos. Love from Brazil!
@amitkoushik5504
@amitkoushik5504 3 года назад
You cleared all my doubts about linked list. I was trying to understand the concept from a week. At last your video helped a lot, thank you so much. May god bless you ❤❤
@rockybhai-cn3qw
@rockybhai-cn3qw 4 года назад
ma'am please make more video. like - stack, tree, recursion, interview question, leetcode solution etc. You are great teacher
@knowthrvdo
@knowthrvdo Год назад
yes mam
@abhirupbasu9298
@abhirupbasu9298 Год назад
Yes ma'am
@phames2101
@phames2101 11 месяцев назад
This is the final code i wrote including creating ,print and insertion in Linked List. #include #include struct node { int data; struct node *next; }; struct node* head=NULL; struct node* newNode; struct node* temp; int Number; void Print(){ temp=head; printf("["); while(temp!=0){ printf("%d " ,temp->data); temp= temp->next; } printf("]"); } void createLinkedList(){ //int Number; printf("Enter the number of data you want to enter: "); scanf("%d", &Number); for(int i=0; idata); newNode->next=NULL; if(head==NULL){ head=temp=newNode; } else{ temp->next= newNode; temp=newNode; } } Print(); } void insertatbegin(){ int newData; printf(" Enter the data you want to add: "); scanf("%d" , &newData); newNode= (struct node*) malloc(sizeof(struct node)); newNode->data= newData; newNode->next= head; head= newNode; Print(); Number++; } void insertatend(){ int dataEnd; newNode= (struct node*) malloc(sizeof(struct node)); printf(" Enter the data you want to insert at end: "); scanf("%d" , &newNode ->data); newNode-> next= 0; temp=head; while(temp->next!=0){ temp= temp->next; } temp->next= newNode; Print(); Number++; } void insertatspecific(){ int pos; int i=1; printf(" Enter the position you want to insert data: "); scanf("%d" , &pos); if(pos>Number){ printf("Invalid position"); } else{ newNode= (struct node*) malloc(sizeof(struct node)); temp=head; while(inext; i++; } printf("Enter the data: "); scanf("%d" ,&newNode->data); newNode->next= temp->next; temp->next=newNode; Print(); } } int main() { createLinkedList(); insertatbegin(); insertatend(); insertatspecific(); return 0; }
@user-qj6pu3yr9r
@user-qj6pu3yr9r 8 дней назад
Is this working?
@CountMordecai
@CountMordecai 3 года назад
Teachers like you are the reason why we pass university exams 😍😍😍
@Chris-xc2zg
@Chris-xc2zg 3 года назад
"pass with good marks"
@abdulrahmans6879
@abdulrahmans6879 Год назад
Hii mam, Very clear explanation of Insertion and deletion mam Words can't describe how i am mad about you lectures becoz now the time is 12:47 am without using any social media i watched this video completely. Thanks form the bottom of my Heart May the Almighty gives you a Healthy and wealthy life...!
@StrollerEngineer
@StrollerEngineer 5 лет назад
Mam you are really prove a God for me. I searched this topic from different sources but no one could explained like you. Really great mam 🙏
@anujonthemove
@anujonthemove 2 года назад
Amazing! Explained with all the minute details. A lot of people get confused about when to use temp != 0 or temp->next != 0, explained in detailed at: 15:48
@EEB-CHHEMANTHGOUTHAMYADAV
@EEB-CHHEMANTHGOUTHAMYADAV 2 года назад
Sir where should write this insert at beginning code in the linked list code
@blank6356
@blank6356 4 года назад
May god bless you . You may live for 100 years. God sent angel fallen to earth to save data structure victims
@firstnamelastname3532
@firstnamelastname3532 4 года назад
Only 100 years?
@blank6356
@blank6356 4 года назад
@@firstnamelastname3532 maybe more
@kick-tech4691
@kick-tech4691 4 года назад
Ohhh , just wow . Maam the quality content you are creating you must have 1million subs. Just loved the way you explain everything.
@tanishp263
@tanishp263 4 года назад
I have seen u grow from 500 subscribers till this day congratulations 🎉
@pranjalnama2420
@pranjalnama2420 3 года назад
You are an awesome teacher mam ... Your lecture make me feel like that I can do anything ... Thank you so much mam we love you ❤️.. the way you teach is the best ❤️
@akshitaagrawal4457
@akshitaagrawal4457 2 года назад
Speechless mam 🙏🙏 Concepts are extremely " 👌 "
@Darkdevil2000
@Darkdevil2000 Год назад
Mam....i have started just ur DSA part..and its really really awesome....by handwritten its quite simple to understand and ur teaching methods are outstanding...one by one line and how the code actually run ....oh my god..i m a big fan of your mam......alots of love to uh ❤❤...keep growing ...🎉❤
@nandinikumari586
@nandinikumari586 2 года назад
Implementation in C language. #include #include int main() { struct node { int data; struct node *next; }; struct node *head, *newnode, *temp; head=0; int choice; while(choice) { newnode=(struct node*)malloc(sizeof(struct node)); printf("Enter the data: "); scanf("%d",&newnode->data); newnode->next=0; if(head==0) { head=temp=newnode; } else { temp->next=newnode; temp=newnode; } printf("Do you want to continue(0,1)?: "); scanf("%d",&choice); } temp=head; while(temp!=0) { printf("%d",temp->data); temp=temp->next; } struct new { int data; struct new*next; }; struct new *begnode; begnode=(struct new*)malloc(sizeof(struct new)); printf("Enter the element: "); scanf("%d",&begnode->data); begnode->next=head; head=begnode; temp=head; while(temp!=0) { printf("%d",temp->data); temp=temp->next; } }
@commercekv8422
@commercekv8422 Год назад
thank you bro
@NikhilKumar-ih5lv
@NikhilKumar-ih5lv Год назад
Bro mera head =0 mera code run nhi kar
@adarshgupta5255
@adarshgupta5255 Год назад
@@NikhilKumar-ih5lv( head ==0 ) kro Bhai you are assigning the value not comparing ...
@adarshgupta5255
@adarshgupta5255 Год назад
While (Choice = = 1)
@boomusic5658
@boomusic5658 Год назад
Plz convert it in c++
@sarojmaharjan2447
@sarojmaharjan2447 Год назад
You have been the life saver for most of us. THANK YOU VERY MUCH😍😍
@Core_Programming
@Core_Programming 4 года назад
Mam i understand this concept!! your the best teacher of data structure plzzz make video on different chapter of data structure and other data structure subject 🙏🏻👍🏻✨
@adityaghaywat3648
@adityaghaywat3648 4 года назад
You're*
@nilayjayswal6237
@nilayjayswal6237 2 года назад
Hats off to you Mam...Your teaching is the best..I was having very tough time in studying data structures but your videos made it very easy to study..Thank You So Much Mam🙏🏻..
@lalithyagnavalkya9900
@lalithyagnavalkya9900 4 года назад
"im not gonna teach you how to creat a node " Few seconds later "Malloc allocates memory dynamically and to create a node we need....." 😂
@AdityaKumar-lw4yc
@AdityaKumar-lw4yc 3 года назад
yea true ....but it will do no harm if she does a slight revision of the previous topic....i think she did a good job in explaining this concept...it was giving me a hard time
@amitabharoy9241
@amitabharoy9241 3 года назад
lol bro...everytime mam does that..but its good actually
@udaragunawardana5461
@udaragunawardana5461 4 года назад
I from SriLanka mdm U are doing very well With the help of you im going to face my data structure final exam thank you mam
@ankitpathak9334
@ankitpathak9334 Год назад
What a session. All concepts related to insertion is clear in a single video only💯
@PankajKumar-qb9ic
@PankajKumar-qb9ic 4 года назад
I''m attending these classes at 01:00 AM ... And I am going to watch the next video now only. The one & only one reason is the kind of dedication & determination with which she is teaching... GOD BLESS YOU! BEST WISHES...💕💕
@mohammedsisay4498
@mohammedsisay4498 2 года назад
You have high potential to explain the course,I have never seen any one like you explain and try to easily understand the course.
@jayachandra677
@jayachandra677 4 года назад
i'm from EC background and our college never taught us DS. I've been struggling with linked lists from the past 4 months and these videos are utterly awesome!
@zaidshaikh2536
@zaidshaikh2536 4 года назад
Same here
@dishasuryavanshi5487
@dishasuryavanshi5487 4 года назад
I have never studied linked list with that much interest...thank you so much mam😄
@abdulrahimjalloh363
@abdulrahimjalloh363 3 месяца назад
I really dont know how to thank you mam, you deserve all the thanks in the world. You should be a lecturer for lecturers. Mam, thanks endlessly. May God bless you
@amanrubey
@amanrubey 3 года назад
I can't thank Jenny ma'am enough for making each line and my concepts crystal clear 💙
@srkonok
@srkonok 5 лет назад
Great effort... Love from Bangladesh
@pindipavan6748
@pindipavan6748 4 года назад
The way u delt with this kind of sensitive topics is absolutely amazing mam.. It is completely understandable and u r explainantion in each n every step.. Thanks mam.. Love from HYDERABAD ♥
@theadal8372
@theadal8372 4 года назад
In my class: what is linked list?? They have both data, and pointer variable to the next node... That's all class finished about linked list. And here.... Linked list have 21 subtopics... I'm totally grateful for you mam.. Thank you so much
@sggffdgcx3769
@sggffdgcx3769 3 года назад
I was not at all into data structures, I used to run away from this subject but now that I understand this I apply my own logic to perform these operations
@atharvakulkarni2319
@atharvakulkarni2319 4 года назад
Maam ur great, really these videos are really helpfull to understand concepts clearly
@mh5854
@mh5854 4 года назад
the best ever ever ever. thanks from kurdistan--iraq
@engineeronfire4157
@engineeronfire4157 4 года назад
Mam insertion in specific position is wrong because in IF condition you have to take (i
@navneetmishra6201
@navneetmishra6201 3 года назад
check i
@AdityaKumar-lw4yc
@AdityaKumar-lw4yc 3 года назад
Now this how a teacher should teach a subject.....but sadly all of us get some nobody with a shallow knowledge of the subject in our college to teach us our core subjects ....thank you mam for your hard work and helping us in understanding the concepts in great detail.....
@shubhisharma8371
@shubhisharma8371 3 года назад
Understood the concept very welll!! Thankyou Ma'am.
@mrigankassarma7497
@mrigankassarma7497 4 года назад
A complete program would allow beginners to comprehend the basics better....Anyways it was a great learning experience.❤
@lrd9994
@lrd9994 Месяц назад
Can I get the full program for the insertion beginning
@naziahaji1476
@naziahaji1476 4 года назад
Mam your lectures helped and help me a lot it's not even enough to say thank you You just saved my future lots of love from Somalia
@sourabhsharma4957
@sourabhsharma4957 4 года назад
Mam, my pre semester exams are going on and your videos helped me a lot. You explained every concept so clearly and nicely that I understand every topic very easily.Thank you.
@mdkaiserali6830
@mdkaiserali6830 4 года назад
after description, please make complete program. cause it create difficulties for beginners
@rahulkumarsingh3417
@rahulkumarsingh3417 4 года назад
True
@piyushgautam7142
@piyushgautam7142 3 года назад
Very true
@premalupadhyay3555
@premalupadhyay3555 4 года назад
What is like particularly about this video is just that you didn't add any ads in this video, since your some video have ads, but Ma'am you know this lecture is most important and students should not distract by ads, I like that best teaching and teacher ever.....thanks for giving free lectures.....
@cobraigmoments
@cobraigmoments 4 года назад
paheli bar linked list paar ke achha laga. thanks ma'am for explaining so simply and clearly. ✌💖💥
@tathirraza5248
@tathirraza5248 4 года назад
Your way of explaining is "OUTSTANDING". Thank you 🙏💕so much ma'am
@shankarshankar5298
@shankarshankar5298 4 года назад
there is lot off confusion but i understand it by my self thnk you mem your lecture very helpful.
@rimpinag6346
@rimpinag6346 4 года назад
Yes me also ... i have also lot of confusion ...
@timelessseries5202
@timelessseries5202 3 года назад
@@rimpinag6346 email me I will solve ur confusion
@timelessseries5202
@timelessseries5202 3 года назад
Mam hotaa hai ✓
@irinsaramathew729
@irinsaramathew729 3 года назад
Thank you so much mam.iam watching and learning these things from kerala .I am an mca student doing distant mca.very hard to study since we get no classes. This helped me lot.I am sure i will watch all your lectures on data structure and will share with my frnds in study center.
@Starfactstelugu
@Starfactstelugu Месяц назад
one of the best teachers ever in my life
@sriparnachakraborty974
@sriparnachakraborty974 5 лет назад
Love ur videos maam
@GrandTotalGamer
@GrandTotalGamer 5 лет назад
Thanks mam 😊 & Happy Independence day in advance 💫
@JennyslecturesCSIT
@JennyslecturesCSIT 5 лет назад
Happy Independence Day 😊
@cheeraneha2207
@cheeraneha2207 2 года назад
@@JennyslecturesCSIT hi mam your videos very use ful
@navalsharma375
@navalsharma375 10 месяцев назад
I face too much problem at beginning but now everything is soo clear. All credit goes to mam's hardwork of us❤
@susheelkumar7029
@susheelkumar7029 5 лет назад
Mam,all lectures video of you are very good & It will help me to obtaining good mark in Data Structure ,Thank you
@bhaveshmoon1979
@bhaveshmoon1979 4 года назад
if( concept taught==by Jenny mam) { printf("Understood each concept"} } Thank you so much mam for such detailed explanation...
@sanasayyad1872
@sanasayyad1872 10 месяцев назад
💯 well u missed the semicolon 😅
@safdarali_
@safdarali_ 4 года назад
Thanks madam,your lectures helped me a lot✨
@pragyapandey8531
@pragyapandey8531 3 года назад
Ma'am apki ek cheez ye bhut achhi h ki aap phle Bolte h ki last video discuss nhi krenge ..aur uske turant baad aap same cheez discuss krte ho.... BTW your r the best teacher .... ❤️
@RELAXANDLISTEN6440
@RELAXANDLISTEN6440 6 месяцев назад
mam you are the gem who made my concept regarding linked list clear. Mother India is proud to have a daughter like you and we as the students are fortunate to have you as our teacher
@Sudipta_713
@Sudipta_713 4 года назад
Cleared all my doubts thanks a lot ma'am ❤️
@PujaSharma-mb7gd
@PujaSharma-mb7gd 4 года назад
You forgot about "count" variable in 'insert after a given position'
@harshranjankumar964
@harshranjankumar964 4 года назад
ohhhh achaa ...
@sayedghayooralishahi5414
@sayedghayooralishahi5414 4 года назад
I'm electrical Engineering student basically But I don't know why I'm watching you Ma'am...... I don't know what you talking about, But I know one thing, May be God Creat you on Sunday With full relaxation 😍😍
@GidzPaul
@GidzPaul 3 года назад
This channel is GOLD!
@venkatanagasai4798
@venkatanagasai4798 2 года назад
#include using namespace std; class node { public: int data; node *next; node(int v) { data=v; next=NULL; } }; node *temp,*newnode; node *head=NULL; class singly { public: int val; //creation of a singly linked list void creation() { coutval; newnode=new node(val); if(head==NULL) { head=newnode; temp=head; } else{ temp->next=newnode; temp=newnode; } } //displaying the data of a singly linked list void display() { node *temp1; temp1=head; while(temp1!=NULL) { coutcount){ cout
@Srustigowdavlogs
@Srustigowdavlogs 2 года назад
Seriously I'm bunking my mca class to see ur videos...ur extraordinary teacher
@soubhagyamukherjee1241
@soubhagyamukherjee1241 10 месяцев назад
I have a doublt at specefied position you mentioned i as 1 and position as 2 for inserting element after 2nd node and you set the condition of while loop is while(i
@BCS_HebaShakeel
@BCS_HebaShakeel 4 года назад
This woman is just fabulous. keep going Ma'am. You're just amazing
@ritabritabasak5652
@ritabritabasak5652 3 года назад
A thanks would be less for you, Ma'am, we're so lucky to get this channel on this platform
@tistadutta7653
@tistadutta7653 4 года назад
Hi i am from Gujarat .......ur is teaching amazing...... thank you for guideing for free
@anubharathor7955
@anubharathor7955 4 года назад
Great way of teaching.....we need teachers like you...
@VINAYKUMAR-cv7nv
@VINAYKUMAR-cv7nv 6 месяцев назад
Nice Lecture , clear all my doubts
@eumm11
@eumm11 8 месяцев назад
i love your teaching style, makes everything so clear! thank you so much jenny
@rajeshranjan2293
@rajeshranjan2293 3 года назад
Thank you Jenny :) You have explained the concept in such a way that I am able to create, add node at beginning, end & at a particular position now.
@derejekidanemaryam7722
@derejekidanemaryam7722 8 месяцев назад
You are the best teacher I have ever met. You are very beautiful. I love everything about you
@here4u25
@here4u25 3 года назад
Mam kin shabdo me apka shukriya kru..nhi jnta ... hmre pass itte paise nhi ki mehnge private colleges me pdh ske. ...but apke lectures...bhut ache se help krte h... thank you so much mam🙏🙏🙏...ap or bhi subjects pr vedio bnao.. mam ap kafi acha work kr rhe ho . 🙏🙏
@oluwatobiadeniyi3450
@oluwatobiadeniyi3450 Год назад
You are the best and finest of them all. The step were so helpful and straight forward, I have understood what looked like gibberish to me.
@mahifarooq2337
@mahifarooq2337 4 года назад
Love u so much Dear ma'am Watching from Kashmir !
@sudhanr5387
@sudhanr5387 Год назад
It's Very clear to understand Mam
@codewitharyan
@codewitharyan 3 года назад
Best Video I have ever Seen Respect 3000....🔥💯🙌
@siddharthgupta8248
@siddharthgupta8248 3 года назад
thnx mam to teach us in that way. u are a absolute perfect teacher. if u will open the online class then i will definitly join that class.
@LoveIsLifeTurkishIndia
@LoveIsLifeTurkishIndia 3 года назад
Wow , at last I understood linked list creation, insertion and now will see deletion . I have recommended Jenny's lecture to my all friends as online lecture that are like just reading ppt , not so effective.
@PreetiSingh-le5fu
@PreetiSingh-le5fu 2 года назад
thank you so much mam.. I watched amlost all videos of linked list available on youtube but finally i came to understand clearly on your videos.. thank you mam..
@apparaoneerumalla1891
@apparaoneerumalla1891 4 года назад
I don't even like writing coding stuff ,by seeing ur videos now I'm now automatically trying my own of writing code Tq
@abhishekkattimani9906
@abhishekkattimani9906 Год назад
Thank you for Crystal clear explanation!!!😊
@sumitkumar3710
@sumitkumar3710 4 года назад
The way u explained the insert after given position....mam u r doing lot to a students....it is priceless
@pragathipakadi4504
@pragathipakadi4504 4 года назад
If a person is passionate at coding, then he/she must follow ur utube class's.Ur videos really help a lot..
@krishbilla1839
@krishbilla1839 10 месяцев назад
Jenny ji mai bohot der se samajhne ki koshish kar rha tha, mera dost itna ganda samjha rha tha fir mai aapke paas aya aur ek minute mei samajh aa gya thank you so much
@itsak4944
@itsak4944 2 года назад
Tanks for great explanation madam and your teaching skills is very well and so useful for present studying all computer students .
@jaijothiprithivi1159
@jaijothiprithivi1159 26 дней назад
❤I like this class so much intresting getting an idea of logical thinking of inserting elements in the node❤
@souravsarkarofficials
@souravsarkarofficials 6 месяцев назад
Yes mam I got the concept of insertion operation very well from your videos .Thank you mam for such awesome content.Take love from my side ❤❤
@abhinavgarg6787
@abhinavgarg6787 4 года назад
Thank u thank u so much jenny ma'am.....I hv understood link lists for many times but was not able to understand them.....It is because of u I hv understood this so easly........Ur hardwork can be seen in ur videos...... Very basic explanations .......which are easy to understand ........ur hardwork will pay u hard......thank u so much
@ekansh6267
@ekansh6267 Год назад
perfect explaination ,with working of code!! 👌🙏
@sparshvohra9700
@sparshvohra9700 3 года назад
The best data structure series ever!!
@harikrishnanharikrishnan6074
@harikrishnanharikrishnan6074 7 месяцев назад
Thank you so much mam I saw your singlely linked list video , i understood the concept very well. Then I try doubly linked list . I done it my self 🎉🎉🎉
@AdityaSharma-vu2qg
@AdityaSharma-vu2qg 3 года назад
Hey, u teaches us very well.No one can teach like u, I like ur teaching style. Keep it up ✌🏼
@asifyounas2944
@asifyounas2944 4 года назад
Thanx ma'am you have cleared many concept of me about linked list.
@induwaramihisara2016
@induwaramihisara2016 6 месяцев назад
Your teaching skill is superb mam.Love from Sri Lanka💛
@adishgaikwad6138
@adishgaikwad6138 3 года назад
wow i never thought my concept would clear in first time. Thank you soooooooooo much.
@user-gb4ov2lp2e
@user-gb4ov2lp2e 3 месяца назад
Mam wonderful explanation I gonna never saw this type of explanation love you mam
Далее
Gli occhiali da sole non mi hanno coperto! 😎
00:13
Single Linked List (Inserting a Node at the Beginning)
5:37
Hash Tables and Hash Functions
13:56
Просмотров 1,5 млн
How To Think Like A Programmer
1:00:07
Просмотров 2 млн
Creating the Node of a Single Linked List
6:00
Просмотров 994 тыс.
Gli occhiali da sole non mi hanno coperto! 😎
00:13