CORRECTION: @24:10 initialize choice variable with 1 by writing: int choice=1;
@rabean50 Жыл бұрын
long time no see
@sachinandan5 Жыл бұрын
@@kangmoabel still she is the best the way she teaches,, its unique & efficient enough..
@pallaviyaddanapudi7345 Жыл бұрын
After loop which is one printed for creating list
@Mohammed.1471 Жыл бұрын
Mam can u please provide printed code ?....plzz
@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; }
@LaysaBit3 жыл бұрын
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!
@replyingtomemeansyourstupi89962 жыл бұрын
mi amor brasilia
@iskacharms27922 жыл бұрын
Bro
@ricardob92762 жыл бұрын
@@replyingtomemeansyourstupi8996 iam stupid
@crazysorter97002 жыл бұрын
Great
@diwasmishra41222 жыл бұрын
Which study you were doing which course
@srin425 жыл бұрын
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.
@badrip32372 жыл бұрын
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 Жыл бұрын
@@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.
@mavericks57633 жыл бұрын
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_111akshaychaudhari82 жыл бұрын
thanks
@invincible83212 жыл бұрын
Appreciate it bro
@tushtikulshreshtha012 жыл бұрын
Thanks brother
@MRAGAV2 жыл бұрын
🔥💥
@maongozukum55722 жыл бұрын
Doesn't run proberly
@snehashishhalder65915 жыл бұрын
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 !!
@srujithreddy16433 жыл бұрын
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-db3ge5 жыл бұрын
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 Жыл бұрын
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_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!
@koolkd124 жыл бұрын
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.
@TheBoredandCool4 жыл бұрын
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
@anjalii11025 жыл бұрын
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
@gautamdwivedi24003 жыл бұрын
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.
@abdulwarissherzad99144 жыл бұрын
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 .
@TheBoredandCool4 жыл бұрын
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
@kumarivandana34493 жыл бұрын
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.😊
@moazzamqureshi71504 жыл бұрын
This is like exponential times better than my phd professor , glad to be learning from this !
@ayeshaqamar922410 ай бұрын
Seriously she deserves Oscar in teaching profession ❤
@arvindersingh95885 жыл бұрын
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
@prachijadhav57193 жыл бұрын
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🙌👍
@duniajahansaraasman19973 жыл бұрын
Mam ne wakai accha tarike se samjhaya hai
@soujitd3 жыл бұрын
Your words are really true bro...
@sunnyjain67312 жыл бұрын
@@pundlikpatil2380 bhai printf scanf ki jgh cout cin ka he to diff hai itna kuch nhi hai same he to hai bro
@aniketsaha72732 жыл бұрын
Kitna paisa mila yeh sab likhne ke liye Bhai
@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
@ashrafulalamhridoy67285 жыл бұрын
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..
@thanigaivelan83945 жыл бұрын
The same here...bro....😉😉😉
@sarabjeetkhadka19402 жыл бұрын
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😄
@deekshithpraddeep67154 жыл бұрын
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.
@harshgupta04983 жыл бұрын
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.
@murigig4 жыл бұрын
You can't imagine how much you are helping some of us
@AmitYadav-hm4sz5 жыл бұрын
one of the best DS lectures i have ever seen on youtube.... this type of lecture is not present on youtube..thanks mam
@harithachandran95622 жыл бұрын
Ma'am I have a doubt ,I have an error in if(head=newnode->next=0) It seems Id returned 1 exit status.
@nothingidontknow63922 ай бұрын
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.
@erl2nd2 жыл бұрын
Thank you 😊 You have given new life to my understanding of the C program Link List.
@apoorvarumale15054 жыл бұрын
I'm all serious and attentive throughout the video but your "take care and bye-bye" melts my heart.
@TheBoredandCool4 жыл бұрын
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
@yrtepgold2 жыл бұрын
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 Жыл бұрын
Sir ,in usa how is the scope of IT sector ? Is it has much scope?
@93025290522 жыл бұрын
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🙏🙏🙏
@vaibhavsharma51145 жыл бұрын
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
@maryannemuthoni53888 ай бұрын
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-ci7qz5 жыл бұрын
Best lecture ever ma'am...u have explained every single point...
@Cloud-5773 жыл бұрын
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.
@divyenduroychoudhuri72673 жыл бұрын
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. 😊😊
@CricwuthNJ2 жыл бұрын
Bhai ye program run hua tha
@ramjas53515 жыл бұрын
o....mother of algorithm...💚💛🧡 i never seen such like explanation. ..only and only requist capture ever topic. .
@rakeshbabu47904 жыл бұрын
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 Жыл бұрын
A big round of applause from Pakistan. Great work.... But please do the same in Java coding. Thank you
@umais_023 ай бұрын
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
@sooryaj12704 жыл бұрын
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_nsds13 күн бұрын
Finally I understood this concept after watching video again and again ❤. Thank you so much ma'am ❤
@Adeel_Noshahi4 жыл бұрын
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.
@ruthrakaran3 жыл бұрын
🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣suma eru da
@brainify61724 жыл бұрын
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
@mdimranhussain1713 жыл бұрын
Thank you teacher. after 4 days of wandering here and there , its all clear now .
@hjklmn952610 ай бұрын
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
@shivambaghel96685 жыл бұрын
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.❤️🤘
@TheBoredandCool4 жыл бұрын
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
@adritaadi80275 ай бұрын
no one can beat you in teaching DSA!!! You are simply the BEST!!!!!!!1
@great873611 ай бұрын
Thankyou mam i pass the data structure exam by watching your videos😊❤.its really very very helpfull to me
@shanmukhteja35554 жыл бұрын
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_kumarvelloreinsti18664 жыл бұрын
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....
@aishabatool47613 жыл бұрын
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...
@avineshp78585 жыл бұрын
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.
@haripriya86752 жыл бұрын
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....
@harshdwivedi58325 жыл бұрын
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.17532 жыл бұрын
mam,frankly to say this video is so worthy.Till now no one has explained this concept clearly.
@PareeksAcademy10october20013 жыл бұрын
/*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_ Жыл бұрын
this code will node work because you have to assign your choice=1 before while
@SRC5894 жыл бұрын
no need to unlike...her effort deserves a big like. Nice teaching.
@douchenozzlemcgee61114 жыл бұрын
w o w she's smart, well-spoken and gorgeous?? My brain has officially broken!
@shraiyashpandey3653 жыл бұрын
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!
@team4b685 жыл бұрын
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 Жыл бұрын
YOU HAVE NO IDEA HOW MUCH UR HELPING ME , DURING EXAMS . YOU'RE SAVIOUR
@franciscorodriguez-zb8uq3 жыл бұрын
im still amazed on how good this whole playlist is... mam... thank you so much...
@jacobblack2544 Жыл бұрын
Me no hablo engles!
@krithikkumar9594 жыл бұрын
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_63995 жыл бұрын
Thanks mam for teaching in such an amazing way , keep giving your valuable knowledge 🤩🤩🤩🔥🔥🔥
@sahanas783810 ай бұрын
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 Жыл бұрын
This lecture is so good.. I can't thnk you enough for the lectures u provide.. solid lecture 💯💯
@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
@ershadtantry57744 жыл бұрын
...been struggling with this for quite some time. Thank you for the help!
@Sasikumar-kr7xy4 жыл бұрын
I was afraid of data structures before , but now everything is crystal clear, i had gained the confidence of writing DS. Thanks a lot !!!
@TheBoredandCool4 жыл бұрын
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-kr7xy4 жыл бұрын
@@TheBoredandCool joined yesterday in the DSA workshop , it's awesome
@TheBoredandCool4 жыл бұрын
@@Sasikumar-kr7xy great
@atulpandey76377 ай бұрын
Everything was going well before this video but this video made me realize that i am still noob😥😥
@talinungsanglemtur22782 жыл бұрын
Thankful for such a brilliant teacher in youtube. One of the best Data Structure lecture one can find.
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++.
@adhargupta34413 жыл бұрын
Who the hell has said the one way communication can't work...🙄 This is incredible mam thanku🥺🌝💗💗
@abhayda61884 жыл бұрын
Hands down the best video on youtube for this topic....great explanation! Guys please watch the whole video.
@smitkevadia4 жыл бұрын
Your videos are very helpful during this lockdown period. Thank You ❤
@ARUN007MNIT4 жыл бұрын
Bahot badhiya mam. Choti choti nitty gritties batati ho aap jo bahut sare teachers for granted le lete hain.
@AbdulGhaffar-lw5vf5 жыл бұрын
Thnk yu... BTW How yu said "fine" in last is funny nd cute.
@muralikrishna75924 жыл бұрын
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.
@roshangogu26702 жыл бұрын
Oh my, why can’t i understand anything 😢
@learnersacademybyhaya.3458 ай бұрын
Did you get then? Did you pass the course?
@DurgaSaathwikKolla7 ай бұрын
😂😂
@roshangogu26707 ай бұрын
@@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)
@roshangogu26707 ай бұрын
@@learnersacademybyhaya.345 yeh, I passed luckily anyway🥹. It was one of my 3rd sem subject
@coding_with_bf7 ай бұрын
I am also😢😢😢😢
@amitkumargupta67224 жыл бұрын
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_eyes8 ай бұрын
I have to ignore mam in video to understand the topic Why she 's so beautifull❤
@shadanahmadec46942 жыл бұрын
I think the best lecture I've ever seen on youtube and how clearly defines node concept one by one. Love u mam😊.
@AJAYLIKEEMO4 жыл бұрын
Ma'am its my 17th time of watching this video though I haven't understood this concept well but Dekhna Acha Lagta hai
@ayushpandey26404 ай бұрын
OMG what's a understanding level I thinks this type of teachers can clear all doubts of students thanks for this mam😊
@mukul42434 жыл бұрын
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_illav4 жыл бұрын
tqsm yar...
@kaustavgoswami74542 жыл бұрын
Thanks a lot brother❤
@njahnavi79433 жыл бұрын
The best lecture I have attended so far on implementation of LL..crystal clear explanation.. thank you so much mam ❤️🙏
@jenniefine94564 жыл бұрын
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🙏🙇
@kalyanigade6025 ай бұрын
I saw many videos on youtube but all were confusing. You explained it in a very easy way. Thank you mam.....
@aryanrathore17904 жыл бұрын
Even 1million likes are less for this lecture!!
@manpreetsingh-qq5tbАй бұрын
amazing xplnation ,❣, finally understood after watchng 4 times😂😂, thnk u mam
@nileshkhimani93154 жыл бұрын
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-gh4ry2 жыл бұрын
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.
@santanukumar29935 жыл бұрын
After watching 3 time i got to know little and i would like to pin point u that u should in main program.
@santasahithi47894 жыл бұрын
I watched first time but something is missing in my head...should watch once more
@sumit134794 жыл бұрын
same here bro......
@marbles55902 жыл бұрын
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.
@devanshunandha61194 жыл бұрын
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 :)
@sriparnachakraborty9745 жыл бұрын
U r superb maam
@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🙏🏼
@himanshuraj90474 жыл бұрын
"2:20" best moment
@yaduvanshi26762 жыл бұрын
bhut videos dekh li lekin concept maam aap ne hi clear kiya🥰
@saitarunaili33705 жыл бұрын
Ma’am I’m getting conflicting types for head, while declaring head=0