2.4 Linked List Implementation in C/C++ | Creation and Display | DSA Tutorials

  Рет қаралды 1,856,601

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Күн бұрын

Пікірлер: 1 300
@JennyslecturesCSIT
@JennyslecturesCSIT 2 жыл бұрын
CORRECTION: @24:10 initialize choice variable with 1 by writing: int choice=1;
@rabean50
@rabean50 Жыл бұрын
long time no see
@sachinandan5
@sachinandan5 Жыл бұрын
@@kangmoabel still she is the best the way she teaches,, its unique & efficient enough..
@pallaviyaddanapudi7345
@pallaviyaddanapudi7345 Жыл бұрын
After loop which is one printed for creating list
@Mohammed.1471
@Mohammed.1471 Жыл бұрын
Mam can u please provide printed code ?....plzz
@SB_Roy_Vlogs
@SB_Roy_Vlogs Жыл бұрын
​@@Mohammed.1471 @SB_Roy_Vlogs #include #include #include struct node{ int data; struct node *next; }; int main(){ struct node *head,*newnode,*temp; int choice=1; head=NULL; while(choice){ newnode=(struct node*)malloc(sizeof(struct node)); printf("Enter node:"); scanf("%d",&newnode->data); newnode->next=NULL; if(head==NULL){ head=newnode; temp=newnode; } else{ temp->next=newnode; temp=newnode; } printf("Enter 1 for continue and 0 for exit:"); scanf("%d",&choice); } temp=head; while(temp!=NULL){ printf("%d->",temp->data); temp=temp->next; } printf("NULL"); getch(); return 0; }
@LaysaBit
@LaysaBit 3 жыл бұрын
At this point, I dropped my college classes to watch your videos. I learn so fast with you, even though english is not my first language. A big thank you from Brazil!
@replyingtomemeansyourstupi8996
@replyingtomemeansyourstupi8996 2 жыл бұрын
mi amor brasilia
@iskacharms2792
@iskacharms2792 2 жыл бұрын
Bro
@ricardob9276
@ricardob9276 2 жыл бұрын
@@replyingtomemeansyourstupi8996 iam stupid
@crazysorter9700
@crazysorter9700 2 жыл бұрын
Great
@diwasmishra4122
@diwasmishra4122 2 жыл бұрын
Which study you were doing which course
@srin42
@srin42 5 жыл бұрын
Her dedication should be really appreciated.Please do all algorithms then leetcode also. She will be a youtube education trainer star. Her videos are being viewed from all corners of the world. in short she is helping many students who lack proper lectures. Some people born to help and a bring change in world. She has long way to go.
@badrip3237
@badrip3237 2 жыл бұрын
Please explain me what is the difference between head pointer and newnode pointer and why malloc is used for only newnode but not head
@bhashkarkumar1542
@bhashkarkumar1542 Жыл бұрын
@@badrip3237 the declaration "struct Node* head = NULL" reserves memory for the pointer variable 'head', it doesn't allocate memory for the 'node' structure itself at this point. the memory for the Node structure is dynamically allocated using the malloc.
@mavericks5763
@mavericks5763 3 жыл бұрын
Thank you ma'am. The code taught by ma'am is : #include #include void main(){ struct node{ int data; struct node *next; }; struct node *head; struct node *newnode; struct node *temp; head=NULL; int choice,count=0; while(choice) { newnode=(struct node*)malloc(sizeof(struct node)); printf("Enter 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); } printf("-------------------------------- "); temp=head; while(temp!=0) { printf(" %d ",temp->data); temp=temp->next; count++;} { printf(" Count=%d",count);} }
@bemb_111akshaychaudhari8
@bemb_111akshaychaudhari8 2 жыл бұрын
thanks
@invincible8321
@invincible8321 2 жыл бұрын
Appreciate it bro
@tushtikulshreshtha01
@tushtikulshreshtha01 2 жыл бұрын
Thanks brother
@MRAGAV
@MRAGAV 2 жыл бұрын
🔥💥
@maongozukum5572
@maongozukum5572 2 жыл бұрын
Doesn't run proberly
@snehashishhalder6591
@snehashishhalder6591 5 жыл бұрын
Because of you I am alive ... Can't understand a single concept in my clg but after your 30 mins lecture ... Its now clear and understandable ... Proper explanations and best tutorials in KZbin for CS students ... Keep this amazing work up !!
@srujithreddy1643
@srujithreddy1643 3 жыл бұрын
I finally understood the concept of linked list. previously, I watched thousands of other youtubers, teaching the same thing and no body does it better than you . Thank you so much mam.....
@RahulSingh-db3ge
@RahulSingh-db3ge 5 жыл бұрын
One of the best teacher I have ever seen in my life who explained linked list in such an easy way. Thanks mam for uploading this video.
@prabhat2661
@prabhat2661 Жыл бұрын
Jenny mam your teaching skills are way better than tier 1 2 3 college teachers really grateful to consume such valuable content for free hats of to your hard work and dedication towards Teaching, every engineers programming base is created from KZbin .... :)
@heeku_
@heeku_ 5 жыл бұрын
you explain so good, there is not a lot of QUALITY videos regarding linked list, you are among the few I have ever seen, you made me understand linked list (which I am doing in C now) and I managed to success my homework after trying it for a week without success, you are amazing, I want to thank you for that!
@koolkd12
@koolkd12 4 жыл бұрын
Amazing, you didn't only explain the concept of linked lists well, you also taught how to think and construct the program along the way, adding the if else , while loops . Wish I had someone teach me concept like this 10 us back when I graduated I would have found greater joy and purpose in life with programming.
@TheBoredandCool
@TheBoredandCool 4 жыл бұрын
GeeksforGeeks is organising mini course of DSA that you should not miss out. Why?? 1. Live QnA sessions, you can clear all doubts related to DSA. Any doubt from LinkedList to Graph. 2. You will get practice problems after every Data structure to make you good at DSA and crystal clear concepts. 3. After completion of course you will get certificate and can access course anytime. 4. Its FREE!!! But only if you use the below code - GFGD4Y2JR Register here- practice.geeksforgeeks.org/courses/Workshop-DSA?loginMode=308
@anjalii1102
@anjalii1102 5 жыл бұрын
I was so tensed with linked list.Tried paid courses,even watch other so called 80 k+ subscriber's channels no one was better than you.u explain from heart not juzz for subscribers.hoping 4ur 1 Million+ n ahead!!!! Tysm ma'am
@gautamdwivedi2400
@gautamdwivedi2400 3 жыл бұрын
One of the best video on linked list. I tried to learn from different sources but coudn't understand. But after watching this video my concepts are completely clear. The concept has been explained in crystal clear manner. Thank you so much ma'am for this awesome video.
@abdulwarissherzad9914
@abdulwarissherzad9914 4 жыл бұрын
You teach Link List completely in a very logical way and i hope you will never remove this taturail or never chang to payment site . thank you.... wish you the best .
@TheBoredandCool
@TheBoredandCool 4 жыл бұрын
GeeksforGeeks is organising mini course of DSA that you should not miss out. Why?? 1. Live QnA sessions, you can clear all doubts related to DSA. Any doubt from LinkedList to Graph. 2. You will get practice problems after every Data structure to make you good at DSA and crystal clear concepts. 3. After completion of course you will get certificate and can access course anytime. 4. Its FREE!!! But only if you use the below code - GFGD4Y2JR Register here- practice.geeksforgeeks.org/courses/Workshop-DSA?loginMode=308
@kumarivandana3449
@kumarivandana3449 3 жыл бұрын
I had lots of confusion .. but now I understand everything about linked list...thank you so much Jenny mam.. Students like us ..who do not understand concepts easily you teach us easily.😊
@moazzamqureshi7150
@moazzamqureshi7150 4 жыл бұрын
This is like exponential times better than my phd professor , glad to be learning from this !
@ayeshaqamar9224
@ayeshaqamar9224 10 ай бұрын
Seriously she deserves Oscar in teaching profession ❤
@arvindersingh9588
@arvindersingh9588 5 жыл бұрын
One of the best DS lectures i have ever seen on youtube. The tricky concept of linked list has been explained in such an interactive and crystal clear manner that i was able to think of the codes of other operations on singly linked list by end of video. This type of content deserves millions of views. Wish you get 1 Million + subs soon. Thanks for the awosome content. Respect from NIT Jalandhar
@prachijadhav5719
@prachijadhav5719 3 жыл бұрын
Ma'am I have seen many videos of data structures but yours is best 💯thanks a lot for such a best explaination of the concept🙌👍
@duniajahansaraasman1997
@duniajahansaraasman1997 3 жыл бұрын
Mam ne wakai accha tarike se samjhaya hai
@soujitd
@soujitd 3 жыл бұрын
Your words are really true bro...
@sunnyjain6731
@sunnyjain6731 2 жыл бұрын
@@pundlikpatil2380 bhai printf scanf ki jgh cout cin ka he to diff hai itna kuch nhi hai same he to hai bro
@aniketsaha7273
@aniketsaha7273 2 жыл бұрын
Kitna paisa mila yeh sab likhne ke liye Bhai
@darineesh.r66
@darineesh.r66 Ай бұрын
I don't believe mam..u explained very clearly and mentioned all the things in a single vedio...very surprising my god she made a record salute from pondicherry india
@ashrafulalamhridoy6728
@ashrafulalamhridoy6728 5 жыл бұрын
Miss, i have been trying to learn linked list for last 4/5 days.. And wasted 6/7 hours. But somehow i found your video and thought 30 mins will waste again.. But everything changed when you were explain.. You made it so clear and easy.. Thanx for the great video..
@thanigaivelan8394
@thanigaivelan8394 5 жыл бұрын
The same here...bro....😉😉😉
@sarabjeetkhadka1940
@sarabjeetkhadka1940 2 жыл бұрын
Mam ke lectures padhne k baad subject me interest bhi padh jaata hai, jo koi bhi seekhna hahte hai aur achhe se seekh nahi paare bcoz of financial problems or unke clg me achhe se nahi padaya jaara, suno mam itna effort laga rahi hai jitna ho sake donation krdo guys, i know students ko mushkil hoti hai but trust me she's helping us alot more than we ever will so jitna ho sake utni help karo channel ki😄
@deekshithpraddeep6715
@deekshithpraddeep6715 4 жыл бұрын
Thank u so much Maam, the lecture was one of the effective and understanding DS lectures I had watched since now. I again Thank u for the effort you have taken for providing us this Wonderful Lecture.
@harshgupta0498
@harshgupta0498 3 жыл бұрын
what a explanation, you just won my heart. I got this lecture after suffering a lot from linked list. Thank you so much MAM for providing such a wonderful lecture.
@murigig
@murigig 4 жыл бұрын
You can't imagine how much you are helping some of us
@AmitYadav-hm4sz
@AmitYadav-hm4sz 5 жыл бұрын
one of the best DS lectures i have ever seen on youtube.... this type of lecture is not present on youtube..thanks mam
@harithachandran9562
@harithachandran9562 2 жыл бұрын
Ma'am I have a doubt ,I have an error in if(head=newnode->next=0) It seems Id returned 1 exit status.
@nothingidontknow6392
@nothingidontknow6392 2 ай бұрын
OMG, I thought this concept is too hard but when I watch this video carefully I understand everything with ease. Thank you so much ma'am.
@erl2nd
@erl2nd 2 жыл бұрын
Thank you 😊 You have given new life to my understanding of the C program Link List.
@apoorvarumale1505
@apoorvarumale1505 4 жыл бұрын
I'm all serious and attentive throughout the video but your "take care and bye-bye" melts my heart.
@TheBoredandCool
@TheBoredandCool 4 жыл бұрын
GeeksforGeeks is organising mini course of DSA that you should not miss out. Why?? 1. Live QnA sessions, you can clear all doubts related to DSA. Any doubt from LinkedList to Graph. 2. You will get practice problems after every Data structure to make you good at DSA and crystal clear concepts. 3. After completion of course you will get certificate and can access course anytime. 4. Its FREE!!! But only if you use the below code - GFGD4Y2JR Register here- practice.geeksforgeeks.org/courses/Workshop-DSA?loginMode=308
@yrtepgold
@yrtepgold 2 жыл бұрын
Hello from the USA. Thank you for making these videos mam! I found your channel last spring as I was struggling to implement a linked list ds for a masters course. I found your channel and after watching this video everything clicked for me and I totally understood what I needed to do. I've since passed my course but I find myself still watching videos on your channel even though I don't need to for any course work bc I find your teaching style and white board approach to be so effective.
@user-ve8kw6eu7h
@user-ve8kw6eu7h Жыл бұрын
Sir ,in usa how is the scope of IT sector ? Is it has much scope?
@9302529052
@9302529052 2 жыл бұрын
KZbin pe 4-5 videos dekhe par linked list samjh nahi aya hindi me dekhe fir bhi samjh nahi aya BUT Apne jis tarah se explain kiya hai linked list ko is videos me I think my mind is clear what is linked list and how to use Whith data Thanks so much🙏🙏🙏
@vaibhavsharma5114
@vaibhavsharma5114 5 жыл бұрын
Really mam the lecture was soo understanding, i was having soo much difficulty in implementation of link list but nothing helped me out.Your lecture was soo good and excellent that i have no doubts remained please continue to teach us like this mam.Really you're a fabolous teacher
@maryannemuthoni5388
@maryannemuthoni5388 8 ай бұрын
Thank you, watched it about 3-4 times because i got confused when temp was introduced but when i started drawing the diagrams it made sense, thank you Jenny, you are so brilliant, how you know all these concepts is baffling in a good way, you are incredible.
@AnmolKumar-ci7qz
@AnmolKumar-ci7qz 5 жыл бұрын
Best lecture ever ma'am...u have explained every single point...
@Cloud-577
@Cloud-577 3 жыл бұрын
finally i undrstand things! very well explained. I'm a self taught engineer so finding a youtube video that explains the concept, answers all the why questions, and all the little details is so rare.
@divyenduroychoudhuri7267
@divyenduroychoudhuri7267 3 жыл бұрын
Thanks a lot madam. I was struggling with these for 1 week. I couldn't find any proper material or any lecture video or notes containing good explanations. But after seeing your lecture I am really feeling very comfortable with the topic. Thank you very much for such great explanation. 😊😊
@CricwuthNJ
@CricwuthNJ 2 жыл бұрын
Bhai ye program run hua tha
@ramjas5351
@ramjas5351 5 жыл бұрын
o....mother of algorithm...💚💛🧡 i never seen such like explanation. ..only and only requist capture ever topic. .
@rakeshbabu4790
@rakeshbabu4790 4 жыл бұрын
I don't know how to thank you mam...I have watched several videos on linked list but not even a single video couldn't get into my brain and finally landed on your video...... Excellent teaching.. explained in organizable manner............ thanks a lot mam for ur effort!!!
@muhammadsaqibjaved9904
@muhammadsaqibjaved9904 Жыл бұрын
A big round of applause from Pakistan. Great work.... But please do the same in Java coding. Thank you
@umais_02
@umais_02 3 ай бұрын
i ended up here after being disappointed by my fvrt utubers. and this is the best lecture on utube for understanding linked list. linked list is a very tricky concept and how perfectly u explained it is commendable. thank u
@sooryaj1270
@sooryaj1270 4 жыл бұрын
the value of the choice variable must be set to 1 for the initial entry into while loop, EXCELLENT LECTURE MAM !! A great tutorial that took me to the basics !!! happy_coding_geeks !!
@NehaSharma_nsds
@NehaSharma_nsds 13 күн бұрын
Finally I understood this concept after watching video again and again ❤. Thank you so much ma'am ❤
@Adeel_Noshahi
@Adeel_Noshahi 4 жыл бұрын
Mam my cousin became your fan at first sight.He listens your lec by sitting with me even though he is not studying at all.
@ruthrakaran
@ruthrakaran 3 жыл бұрын
🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣suma eru da
@brainify6172
@brainify6172 4 жыл бұрын
This video is so wonderful that after watching it My linked list concepts are Crystal Clear. No one shows the malloc visualization part. You are such a great teacher. Thank you so so so much. Now I'm able to visualize all other problems of Linked List so easily
@mdimranhussain171
@mdimranhussain171 3 жыл бұрын
Thank you teacher. after 4 days of wandering here and there , its all clear now .
@hjklmn9526
@hjklmn9526 10 ай бұрын
Jenny Mam, Your DSA tutorials are a pleasure to watch. You see, It's been 21 years (in my early 40s) since I completed Computer Engineering, and needed a resource to brush up on DSA. Didn't wish to read Cormen again :) Your simple style of teaching really helped me absorb faster.. Good wishes to you, Mam
@shivambaghel9668
@shivambaghel9668 5 жыл бұрын
A big thanks to you ma'am,i was so frustrated on this topic but you clear all my confusion and make a clear cut concept, thanks you.❤️🤘
@TheBoredandCool
@TheBoredandCool 4 жыл бұрын
GeeksforGeeks is organising mini course of DSA that you should not miss out. Why?? 1. Live QnA sessions, you can clear all doubts related to DSA. Any doubt from LinkedList to Graph. 2. You will get practice problems after every Data structure to make you good at DSA and crystal clear concepts. 3. After completion of course you will get certificate and can access course anytime. 4. Its FREE!!! But only if you use the below code - GFGD4Y2JR Register here- practice.geeksforgeeks.org/courses/Workshop-DSA?loginMode=308
@adritaadi8027
@adritaadi8027 5 ай бұрын
no one can beat you in teaching DSA!!! You are simply the BEST!!!!!!!1
@great8736
@great8736 11 ай бұрын
Thankyou mam i pass the data structure exam by watching your videos😊❤.its really very very helpfull to me
@shanmukhteja3555
@shanmukhteja3555 4 жыл бұрын
Simple superb Hrs of classes can't teach this topic to me ..... But just 29 mins of this video teached me this topic..... Very well said....
@abhishek_kumarvelloreinsti1866
@abhishek_kumarvelloreinsti1866 4 жыл бұрын
I would like to owe you my genuine respect from the core of my heart....a huge amount of respect from me....n fr my friends from Vellore institute of Technology....
@aishabatool4761
@aishabatool4761 3 жыл бұрын
madam, you are really a treasure for me and for any other person who wants to learn DS from basic like me ... you are really a gift for me from ALLAH ALMIGHTY...
@avineshp7858
@avineshp7858 5 жыл бұрын
Recently started following your channel. Good stuff on data structure and algorithms. Almost everything is covered and explained clearly. Being a non CS student it is difficult to understand DS but you have made it easy. Thank you.
@haripriya8675
@haripriya8675 2 жыл бұрын
My first choice is always Jenny lectures for my cs doubts... Whenever I watch u I will be thinking of ur qualification and ur experience...u r younger it seems... But ur teaching and behaviour shows more maturity than ur age... U r Not at all adding any make up.. Always u r being simple and neat.. I love u mam.. From Tamilnadu....
@harshdwivedi5832
@harshdwivedi5832 5 жыл бұрын
Proper explanation!Amazing lecturer...Each and every point was explained briefly and she cleared almost all my doubts and confusions regarding link list within minutes.Thank you for this.😊
@vinayakm.1753
@vinayakm.1753 2 жыл бұрын
mam,frankly to say this video is so worthy.Till now no one has explained this concept clearly.
@PareeksAcademy10october2001
@PareeksAcademy10october2001 3 жыл бұрын
/*Creation and display of singly linked list*/ #include #include #include void 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 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"); scanf("%d",&choice); } temp=head; while(temp!=0) { printf("%d",temp->data); temp=temp->next; } }
@Twitter_trending_
@Twitter_trending_ Жыл бұрын
this code will node work because you have to assign your choice=1 before while
@SRC589
@SRC589 4 жыл бұрын
no need to unlike...her effort deserves a big like. Nice teaching.
@douchenozzlemcgee6111
@douchenozzlemcgee6111 4 жыл бұрын
w o w she's smart, well-spoken and gorgeous?? My brain has officially broken!
@shraiyashpandey365
@shraiyashpandey365 3 жыл бұрын
I have gone through so many linked list implementation and explanation videos on KZbin, but none of them helped me, if anything I got more confused. But this video literally saved me from failing my DS exam lol! Thank You so much!
@team4b68
@team4b68 5 жыл бұрын
This video made Linked List finally look so so easy, that it made me say.. "Yaar yeh toh kitna easy hai!".. Awesome lecture ma'am! :D
@anvithas_aesthetics
@anvithas_aesthetics Жыл бұрын
YOU HAVE NO IDEA HOW MUCH UR HELPING ME , DURING EXAMS . YOU'RE SAVIOUR
@franciscorodriguez-zb8uq
@franciscorodriguez-zb8uq 3 жыл бұрын
im still amazed on how good this whole playlist is... mam... thank you so much...
@jacobblack2544
@jacobblack2544 Жыл бұрын
Me no hablo engles!
@krithikkumar959
@krithikkumar959 4 жыл бұрын
I have attended my normal lecture and also saw some other KZbin videos but I never understood linked list implementation. But after seeing this video everything is crystal clear. Thanks a lot for such a great effort.
@shreshtha_6399
@shreshtha_6399 5 жыл бұрын
Thanks mam for teaching in such an amazing way , keep giving your valuable knowledge 🤩🤩🤩🔥🔥🔥
@sahanas7838
@sahanas7838 10 ай бұрын
Mam I'm really thankful for you ❤️. I never thought that I would understand this topic but you made this really easy to understand. This society needs more teachers like you. Thank you for your amazing help mam💜
@brr522
@brr522 Жыл бұрын
This lecture is so good.. I can't thnk you enough for the lectures u provide.. solid lecture 💯💯
@Paracetamol_650
@Paracetamol_650 Жыл бұрын
too be honest,Maam i studied this topic from various yt channel and found this topic to understand ,but u make this topic so easy THank You so much
@ershadtantry5774
@ershadtantry5774 4 жыл бұрын
...been struggling with this for quite some time. Thank you for the help!
@Sasikumar-kr7xy
@Sasikumar-kr7xy 4 жыл бұрын
I was afraid of data structures before , but now everything is crystal clear, i had gained the confidence of writing DS. Thanks a lot !!!
@TheBoredandCool
@TheBoredandCool 4 жыл бұрын
GeeksforGeeks is organising mini course of DSA that you should not miss out. Why?? 1. Live QnA sessions, you can clear all doubts related to DSA. Any doubt from LinkedList to Graph. 2. You will get practice problems after every Data structure to make you good at DSA and crystal clear concepts. 3. After completion of course you will get certificate and can access course anytime. 4. Its FREE!!! But only if you use the below code - GFGD4Y2JR Register here- practice.geeksforgeeks.org/courses/Workshop-DSA?loginMode=308
@Sasikumar-kr7xy
@Sasikumar-kr7xy 4 жыл бұрын
@@TheBoredandCool joined yesterday in the DSA workshop , it's awesome
@TheBoredandCool
@TheBoredandCool 4 жыл бұрын
@@Sasikumar-kr7xy great
@atulpandey7637
@atulpandey7637 7 ай бұрын
Everything was going well before this video but this video made me realize that i am still noob😥😥
@talinungsanglemtur2278
@talinungsanglemtur2278 2 жыл бұрын
Thankful for such a brilliant teacher in youtube. One of the best Data Structure lecture one can find.
@hetulmehta9960
@hetulmehta9960 2 жыл бұрын
#include #include int main(){ struct node{ int data; struct node * next; }; struct node *head, *newnode , *temp; head = 0; int choice = 1; while(choice){ newnode =(struct node *)malloc(sizeof(struct node)); printf("Enter 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; } }
@shreeyapatel1391
@shreeyapatel1391 Жыл бұрын
this helped a lot to me thank you
@justcurious1940
@justcurious1940 Жыл бұрын
So clean bro.
@PahadiChan05
@PahadiChan05 Жыл бұрын
hai kis chees ka
@YasirKhan-bl8lj
@YasirKhan-bl8lj 4 жыл бұрын
Jenny from the number of KZbin videos on Link List in Data Structure topic you made it really simpler to understand what is actually being done with this complex concept of link list and i guess you really did a lot of hard work before delivering this lecture. Thank you very very much. I hope you will be uploading more useful videos of programming language especially of C++.
@adhargupta3441
@adhargupta3441 3 жыл бұрын
Who the hell has said the one way communication can't work...🙄 This is incredible mam thanku🥺🌝💗💗
@abhayda6188
@abhayda6188 4 жыл бұрын
Hands down the best video on youtube for this topic....great explanation! Guys please watch the whole video.
@smitkevadia
@smitkevadia 4 жыл бұрын
Your videos are very helpful during this lockdown period. Thank You ❤
@ARUN007MNIT
@ARUN007MNIT 4 жыл бұрын
Bahot badhiya mam. Choti choti nitty gritties batati ho aap jo bahut sare teachers for granted le lete hain.
@AbdulGhaffar-lw5vf
@AbdulGhaffar-lw5vf 5 жыл бұрын
Thnk yu... BTW How yu said "fine" in last is funny nd cute.
@muralikrishna7592
@muralikrishna7592 4 жыл бұрын
Wah! Mam kya padhaya hai apne. Me c++ kar rha hu. C ho gya. Aur ye video linked list banane ke liye dekha to maza hi aa gya.
@roshangogu2670
@roshangogu2670 2 жыл бұрын
Oh my, why can’t i understand anything 😢
@learnersacademybyhaya.345
@learnersacademybyhaya.345 8 ай бұрын
Did you get then? Did you pass the course?
@DurgaSaathwikKolla
@DurgaSaathwikKolla 7 ай бұрын
😂😂
@roshangogu2670
@roshangogu2670 7 ай бұрын
@@learnersacademybyhaya.345it's been 1 year 😲 , luckily I passed my exam(data structure), it was my 3rd sem subject and currently I am on my final sem(time files like a jet)
@roshangogu2670
@roshangogu2670 7 ай бұрын
@@learnersacademybyhaya.345 yeh, I passed luckily anyway🥹. It was one of my 3rd sem subject
@coding_with_bf
@coding_with_bf 7 ай бұрын
I am also😢😢😢😢
@amitkumargupta6722
@amitkumargupta6722 4 жыл бұрын
mam you teach from the depth of heart....And this is the biggest reason of your constant energy and smile during all the lecture....."THANKS A LOT''
@Crying_eyes
@Crying_eyes 8 ай бұрын
I have to ignore mam in video to understand the topic Why she 's so beautifull❤
@shadanahmadec4694
@shadanahmadec4694 2 жыл бұрын
I think the best lecture I've ever seen on youtube and how clearly defines node concept one by one. Love u mam😊.
@AJAYLIKEEMO
@AJAYLIKEEMO 4 жыл бұрын
Ma'am its my 17th time of watching this video though I haven't understood this concept well but Dekhna Acha Lagta hai
@ayushpandey2640
@ayushpandey2640 4 ай бұрын
OMG what's a understanding level I thinks this type of teachers can clear all doubts of students thanks for this mam😊
@mukul4243
@mukul4243 4 жыл бұрын
CODE : #include #include int main() { struct node{ int data ; struct node*next; }; int choice =1; struct node*head; struct node*temp; struct node*newNode; head=0; 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 u want to continue ( type 0 or 1)? "); fflush(stdin); scanf("%d",&choice); } temp= head; printf("items in linked list are:"); while(temp!=0) { printf( " %d",temp->data); temp= temp->next; } return 0; } thank you mam
@with_illav
@with_illav 4 жыл бұрын
tqsm yar...
@kaustavgoswami7454
@kaustavgoswami7454 2 жыл бұрын
Thanks a lot brother❤
@njahnavi7943
@njahnavi7943 3 жыл бұрын
The best lecture I have attended so far on implementation of LL..crystal clear explanation.. thank you so much mam ❤️🙏
@jenniefine9456
@jenniefine9456 4 жыл бұрын
Awesome linked list tutorial thank you. It's my request, if you can make video on some higher competitive problems like baktracking,highest substring palindrome pls make Thanks🙏🙇
@kalyanigade602
@kalyanigade602 5 ай бұрын
I saw many videos on youtube but all were confusing. You explained it in a very easy way. Thank you mam.....
@aryanrathore1790
@aryanrathore1790 4 жыл бұрын
Even 1million likes are less for this lecture!!
@manpreetsingh-qq5tb
@manpreetsingh-qq5tb Ай бұрын
amazing xplnation ,❣, finally understood after watchng 4 times😂😂, thnk u mam
@nileshkhimani9315
@nileshkhimani9315 4 жыл бұрын
your tutorials is too helpfull , ma'am, i am happy to say that , i have seen my sister in you ,durnig the tutorial. i felt like , my sister is teaching me. so will you please be my didi?
@Amandeepsingh-gh4ry
@Amandeepsingh-gh4ry 2 жыл бұрын
Your way of teaching is very awesome. I feel like I am sitting in a classroom and studying in person from you. Thanks a lot for clarifying the linked list in a very simple manner.
@santanukumar2993
@santanukumar2993 5 жыл бұрын
After watching 3 time i got to know little and i would like to pin point u that u should in main program.
@santasahithi4789
@santasahithi4789 4 жыл бұрын
I watched first time but something is missing in my head...should watch once more
@sumit13479
@sumit13479 4 жыл бұрын
same here bro......
@marbles5590
@marbles5590 2 жыл бұрын
Thank you for this lesson but I guess your example is somehow complicated compared to the ones that I've watched on KZbin but overall, it is a GREAT video though. I did not regret watching this and I would recommend this to my blockmates. I like complicated videos like this, it helps in expanding the knowledge capacity of a person. Because of this example, it aided me to successfully create a program like this. Would still watch this again and again.
@devanshunandha6119
@devanshunandha6119 4 жыл бұрын
Just started understanding basics of linked list. Understood everything clearly. Ma'am, The way you taught the concepts was amazing. Teaching everything with the basic idea, even beginner like me can learn very quick. Thank you so much. Looking forward to watch more of your lectures :)
@sriparnachakraborty974
@sriparnachakraborty974 5 жыл бұрын
U r superb maam
@kaushikkumarbhoi4794
@kaushikkumarbhoi4794 Жыл бұрын
Mam yr video just saved my life, understanding linked list ds was very difficult for me and after watching yr whole video on c, I just come to ur ds list to clear my doubts and ur each video is always very satisfying never disappoint me . Thank u so much mam🙏🏼
@himanshuraj9047
@himanshuraj9047 4 жыл бұрын
"2:20" best moment
@yaduvanshi2676
@yaduvanshi2676 2 жыл бұрын
bhut videos dekh li lekin concept maam aap ne hi clear kiya🥰
@saitarunaili3370
@saitarunaili3370 5 жыл бұрын
Ma’am I’m getting conflicting types for head, while declaring head=0
2.1 Introduction to Linked List | Need of Linked List | DSA Tutorials
22:11
Jenny's Lectures CS IT
Рет қаралды 1,3 МЛН
Creative Justice at the Checkout: Bananas and Eggs Showdown #shorts
00:18
Fabiosa Best Lifehacks
Рет қаралды 8 МЛН
快乐总是短暂的!😂 #搞笑夫妻 #爱美食爱生活 #搞笑达人
00:14
朱大帅and依美姐
Рет қаралды 13 МЛН
When Cucumbers Meet PVC Pipe The Results Are Wild! 🤭
00:44
Crafty Buddy
Рет қаралды 60 МЛН
how Google writes gorgeous C++
7:40
Low Level
Рет қаралды 954 М.
⚡️NEWS | RUBLE COLLAPSE | STRIKE ON CRIMEA | PUTIN IN KAZAKHSTAN
10:34
Ходорковский LIVE
Рет қаралды 192 М.
Understanding and implementing a Hash Table (in C)
24:54
Jacob Sorber
Рет қаралды 365 М.
The Study MISTAKES You Wish You’d Known SOONER
8:04
The Angry Explainer
Рет қаралды 13 М.
Pointers and dynamic memory - stack vs heap
17:26
mycodeschool
Рет қаралды 1,5 МЛН
struct Basics | C Programming Tutorial
24:44
Portfolio Courses
Рет қаралды 150 М.
Why is Python 150X slower than C?
10:45
Mehul - Codedamn
Рет қаралды 18 М.