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

  Рет қаралды 1,399,191

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Күн бұрын

Пікірлер: 967
@19_sanketharvande25
@19_sanketharvande25 4 жыл бұрын
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 2 жыл бұрын
are you placed now bro?
@shivanidubey6182
@shivanidubey6182 2 жыл бұрын
@@celebratinglife803 mai bhi yhi puchhne vala tha😂😂
@sathwikgunder8713
@sathwikgunder8713 Жыл бұрын
@@celebratinglife803 🔥😂
@subscribeplz8347
@subscribeplz8347 25 күн бұрын
@@19_sanketharvande25 where u got job ?
@emmanuelkaome7153
@emmanuelkaome7153 4 жыл бұрын
Ma'am, This is the best channel on KZbin followed by NESO academy , l have encountered so far. Thank you kindly for your explanations.
@Mojit00
@Mojit00 2 жыл бұрын
Neso academy 💪🙏
@mdsharique2386
@mdsharique2386 2 жыл бұрын
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 Жыл бұрын
@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
@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 2 жыл бұрын
Thanks
@LavyaChauhan-mb7wn
@LavyaChauhan-mb7wn Ай бұрын
GOAT
@LaysaBit
@LaysaBit 3 жыл бұрын
Just subscribed to her! I'll pass my college years watching her videos. Love from Brazil!
@abdulrahmans6879
@abdulrahmans6879 2 жыл бұрын
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...!
@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. 🤗🙏
@amitkoushik5504
@amitkoushik5504 4 жыл бұрын
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 ❤❤
@phames2101
@phames2101 Жыл бұрын
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; }
@SruthiMadem-h5m
@SruthiMadem-h5m 5 ай бұрын
Is this working?
@pratyashab7
@pratyashab7 Ай бұрын
tysm u are a life saver
@mmmmmm-t6p1c
@mmmmmm-t6p1c 8 күн бұрын
🎉
@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
@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 🙏
@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
@kick-tech4691
@kick-tech4691 5 жыл бұрын
Ohhh , just wow . Maam the quality content you are creating you must have 1million subs. Just loved the way you explain everything.
@nilayjayswal6237
@nilayjayswal6237 3 жыл бұрын
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🙏🏻..
@rockybhai-cn3qw
@rockybhai-cn3qw 5 жыл бұрын
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
@abdulrahimjalloh363
@abdulrahimjalloh363 8 ай бұрын
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
@CountMordecai
@CountMordecai 4 жыл бұрын
Teachers like you are the reason why we pass university exams 😍😍😍
@Chris-xc2zg
@Chris-xc2zg 4 жыл бұрын
"pass with good marks"
@AdityaKumar-lw4yc
@AdityaKumar-lw4yc 4 жыл бұрын
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.....
@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.
@tistadutta7653
@tistadutta7653 4 жыл бұрын
Hi i am from Gujarat .......ur is teaching amazing...... thank you for guideing for free
@pranjalnama2420
@pranjalnama2420 4 жыл бұрын
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 ❤️
@dishasuryavanshi5487
@dishasuryavanshi5487 4 жыл бұрын
I have never studied linked list with that much interest...thank you so much mam😄
@akshitaagrawal4457
@akshitaagrawal4457 2 жыл бұрын
Speechless mam 🙏🙏 Concepts are extremely " 👌 "
@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.....
@tanishp263
@tanishp263 4 жыл бұрын
I have seen u grow from 500 subscribers till this day congratulations 🎉
@naziahaji1476
@naziahaji1476 5 жыл бұрын
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
@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 ♥
@BCS_HebaShakeel
@BCS_HebaShakeel 4 жыл бұрын
This woman is just fabulous. keep going Ma'am. You're just amazing
@srkonok
@srkonok 5 жыл бұрын
Great effort... Love from Bangladesh
@PreetiSingh_1106
@PreetiSingh_1106 3 жыл бұрын
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..
@sarojmaharjan2447
@sarojmaharjan2447 2 жыл бұрын
You have been the life saver for most of us. THANK YOU VERY MUCH😍😍
@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.
@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
@Srustigowdavlogs
@Srustigowdavlogs 2 жыл бұрын
Seriously I'm bunking my mca class to see ur videos...ur extraordinary teacher
@ankitpathak9334
@ankitpathak9334 2 жыл бұрын
What a session. All concepts related to insertion is clear in a single video only💯
@skygazer2678
@skygazer2678 2 ай бұрын
Whenever I need to revise, I come here. This is such a good channel.
@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
@sumitkumar3710
@sumitkumar3710 4 жыл бұрын
The way u explained the insert after given position....mam u r doing lot to a students....it is priceless
@atharvakulkarni2319
@atharvakulkarni2319 5 жыл бұрын
Maam ur great, really these videos are really helpfull to understand concepts clearly
@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
@shubhisharma8371
@shubhisharma8371 4 жыл бұрын
Understood the concept very welll!! Thankyou Ma'am.
@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 ...🎉❤
@Core_Programming
@Core_Programming 5 жыл бұрын
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*
@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
@bikashsantra4002
@bikashsantra4002 3 жыл бұрын
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 3 жыл бұрын
awsome !!!
@ruchitakumari891
@ruchitakumari891 2 жыл бұрын
Hey, thanks a lot🤩
@mohamedthoufiqm8108
@mohamedthoufiqm8108 2 жыл бұрын
👍🏿
@kunaljadhav2963
@kunaljadhav2963 Жыл бұрын
Thanks
@prashanthiguntaka1416
@prashanthiguntaka1416 Жыл бұрын
If we insert at beginning or ending counter variable is not increased
@derejekidanemaryam7722
@derejekidanemaryam7722 Жыл бұрын
You are the best teacher I have ever met. You are very beautiful. I love everything about you
@mh5854
@mh5854 5 жыл бұрын
the best ever ever ever. thanks from kurdistan--iraq
@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...💕💕
@sourabhsharma4957
@sourabhsharma4957 5 жыл бұрын
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.
@oluwatobiadeniyi3450
@oluwatobiadeniyi3450 2 жыл бұрын
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.
@shankarshankar5298
@shankarshankar5298 5 жыл бұрын
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 4 жыл бұрын
@@rimpinag6346 email me I will solve ur confusion
@timelessseries5202
@timelessseries5202 4 жыл бұрын
Mam hotaa hai ✓
@TECHLAY-x4f
@TECHLAY-x4f Жыл бұрын
Fist time in my life I have written 100+ lines of code without error thankyou
@amanrubey
@amanrubey 3 жыл бұрын
I can't thank Jenny ma'am enough for making each line and my concepts crystal clear 💙
@navalsharma375
@navalsharma375 Жыл бұрын
I face too much problem at beginning but now everything is soo clear. All credit goes to mam's hardwork of us❤
@mrigankassarma7497
@mrigankassarma7497 5 жыл бұрын
A complete program would allow beginners to comprehend the basics better....Anyways it was a great learning experience.❤
@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
@tathirraza5248
@tathirraza5248 5 жыл бұрын
Your way of explaining is "OUTSTANDING". Thank you 🙏💕so much ma'am
@mahifarooq2337
@mahifarooq2337 4 жыл бұрын
Love u so much Dear ma'am Watching from Kashmir !
@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 2 жыл бұрын
thank you bro
@NikhilKumar-ih5lv
@NikhilKumar-ih5lv 2 жыл бұрын
Bro mera head =0 mera code run nhi kar
@adarshgupta5255
@adarshgupta5255 2 жыл бұрын
@@NikhilKumar-ih5lv( head ==0 ) kro Bhai you are assigning the value not comparing ...
@adarshgupta5255
@adarshgupta5255 2 жыл бұрын
While (Choice = = 1)
@boomusic5658
@boomusic5658 Жыл бұрын
Plz convert it in c++
@dontbestlife3367
@dontbestlife3367 16 күн бұрын
You are very excellent mam, and an example of beauty with brain
@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 . 🙏🙏
@sriparnachakraborty974
@sriparnachakraborty974 5 жыл бұрын
Love ur videos maam
@rounakmukherjee9540
@rounakmukherjee9540 3 жыл бұрын
Mam , You are best. I don't have much words, just want to say THANK YOU.
@lalithyagnavalkya9900
@lalithyagnavalkya9900 5 жыл бұрын
"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 4 жыл бұрын
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 4 жыл бұрын
lol bro...everytime mam does that..but its good actually
@harshavardhan6347
@harshavardhan6347 4 ай бұрын
we not understanding simplify your explanation
@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.
@bhaveshmoon1979
@bhaveshmoon1979 4 жыл бұрын
if( concept taught==by Jenny mam) { printf("Understood each concept"} } Thank you so much mam for such detailed explanation...
@sanasayyad1872
@sanasayyad1872 Жыл бұрын
💯 well u missed the semicolon 😅
@shyamsoni5153
@shyamsoni5153 3 жыл бұрын
medam your teaching method is very very very osm you are learn about topic everything thankyou so much .good bless you
@mdkaiserali6830
@mdkaiserali6830 5 жыл бұрын
after description, please make complete program. cause it create difficulties for beginners
@rahulkumarsingh3417
@rahulkumarsingh3417 5 жыл бұрын
True
@piyushgautam7142
@piyushgautam7142 4 жыл бұрын
Very true
@krishbilla1839
@krishbilla1839 Жыл бұрын
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
@Sudipta_713
@Sudipta_713 5 жыл бұрын
Cleared all my doubts thanks a lot ma'am ❤️
@RELAXANDLISTEN6440
@RELAXANDLISTEN6440 11 ай бұрын
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
@safdarali_
@safdarali_ 5 жыл бұрын
Thanks madam,your lectures helped me a lot✨
@bhimarajuganesula5832
@bhimarajuganesula5832 2 жыл бұрын
I got the complete clarity that how to insert the nodes in all the 3 conditions... Thankyou very much mam.....❤
@VicksGamingWorld
@VicksGamingWorld 5 жыл бұрын
Thanks mam 😊 & Happy Independence day in advance 💫
@JennyslecturesCSIT
@JennyslecturesCSIT 5 жыл бұрын
Happy Independence Day 😊
@cheeraneha2207
@cheeraneha2207 3 жыл бұрын
@@JennyslecturesCSIT hi mam your videos very use ful
@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..
@Beyrip
@Beyrip 11 ай бұрын
Can someone help me with the whole code of this?
@dusty1583
@dusty1583 Ай бұрын
@@Beyrip ok
@VINAYKUMAR-cv7nv
@VINAYKUMAR-cv7nv 11 ай бұрын
Nice Lecture , clear all my doubts
@PujaSharma-mb7gd
@PujaSharma-mb7gd 5 жыл бұрын
You forgot about "count" variable in 'insert after a given position'
@harshranjankumar964
@harshranjankumar964 4 жыл бұрын
ohhhh achaa ...
@anubharathor7955
@anubharathor7955 4 жыл бұрын
Great way of teaching.....we need teachers like you...
@venkatanagasai4798
@venkatanagasai4798 3 жыл бұрын
#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
@cobraigmoments
@cobraigmoments 5 жыл бұрын
paheli bar linked list paar ke achha laga. thanks ma'am for explaining so simply and clearly. ✌💖💥
@looppaddleanimation9488
@looppaddleanimation9488 4 ай бұрын
Thankyou mam, i could now understand how linked lists worked. Thankyou for explaining it to me.
@ritabritabasak5652
@ritabritabasak5652 4 жыл бұрын
A thanks would be less for you, Ma'am, we're so lucky to get this channel on this platform
@rajprajapati7697
@rajprajapati7697 4 жыл бұрын
I stuck at 16;30 condition by my logic many times.... But only bcz of you i got it right... Thanks a lot.
@sam5940-y9g
@sam5940-y9g 2 жыл бұрын
i was stuck on this topic and was waorried about the exam. thanks to you i am now feeling confident.
@badrip3237
@badrip3237 2 жыл бұрын
Please tell me Why we shouldn't write while (temp!=NULL) for inserting node at Last ?
@anlackermann590
@anlackermann590 2 жыл бұрын
@@badrip3237 because if you write while(temp!=NULL) even after the temp assigned to last node while loop will contunie to process so you will assign NULL to temp (temp=temp->next) which is we dont want to happen since we want temp to store the adress of last node not NULL
@lxlogan1487
@lxlogan1487 4 жыл бұрын
Madam ji, Aapne Sach me kamal kr dia ... Dil de Dua Aapke liye
@saichintada4471
@saichintada4471 3 жыл бұрын
Your way explaining is superb......mam
@adishgaikwad6138
@adishgaikwad6138 4 жыл бұрын
wow i never thought my concept would clear in first time. Thank you soooooooooo much.
@bilwanath_kohinoor1215
@bilwanath_kohinoor1215 4 жыл бұрын
Yes mam really it is reasonable and reliable mam Thanks for your marvellous pedagogy When you are teaching I have written code for other two parts mam Thank You very much once again and I'm beholden to you
@eumm11
@eumm11 Жыл бұрын
i love your teaching style, makes everything so clear! thank you so much jenny
@rajkshirsagar3168
@rajkshirsagar3168 4 жыл бұрын
hello mam, Your teaching skill is very nice. i have understood linked list. if before this i got your video now i very good in DS. You are doing very good work and it is very helpful for us. god bless mam huge respect for you.. keep teaching us..
@prathampancholi6394
@prathampancholi6394 4 жыл бұрын
Best Teacher ever.Thank you very much mam
@souravsarkarofficials
@souravsarkarofficials 11 ай бұрын
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 ❤❤
@LoveIsLifeTurkishIndia
@LoveIsLifeTurkishIndia 4 жыл бұрын
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.
@rupesheducationadda7028
@rupesheducationadda7028 Жыл бұрын
maja aa gya mam... you are teaching superbly.... Thank you so much mam...
@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.
@vivekvaddi5060
@vivekvaddi5060 3 жыл бұрын
you are helped in all the doubts in c programming continue doing this videos mam I love you way of explaining step by step mam I love u mam
@induwaramihisara2016
@induwaramihisara2016 11 ай бұрын
Your teaching skill is superb mam.Love from Sri Lanka💛
@harikrishnanharikrishnan6074
@harikrishnanharikrishnan6074 Жыл бұрын
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 🎉🎉🎉
@runnysarfo4869
@runnysarfo4869 Жыл бұрын
wow thought these were extremely difficult but I'm really enjoying these lectures
2.4 Linked List Implementation in C/C++ | Creation and Display | DSA Tutorials
29:01
Jenny's Lectures CS IT
Рет қаралды 1,9 МЛН
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 23 МЛН
Арыстанның айқасы, Тәуіржанның шайқасы!
25:51
QosLike / ҚосЛайк / Косылайық
Рет қаралды 700 М.
2.1 Introduction to Linked List | Need of Linked List | DSA Tutorials
22:11
Jenny's Lectures CS IT
Рет қаралды 1,3 МЛН
LeetCode was HARD until I Learned these 15 Patterns
13:00
Ashish Pratap Singh
Рет қаралды 725 М.
2.8 Reverse a Linked List - Iterative Method | Data Structure Tutorials
18:44
Jenny's Lectures CS IT
Рет қаралды 449 М.
Why Linked Lists vs Arrays isn’t a real choice
9:15
SimonDev
Рет қаралды 313 М.
Сборник Топ 20 Номеров за 2024 - Уральские Пельмени
2:52:31
Уральские Пельмени
Рет қаралды 70 М.
7 Outside The Box Puzzles
12:16
MindYourDecisions
Рет қаралды 229 М.
LINKED LIST (INSERTION AT BEGINNING,ENDING,SPECIFIED POSITION ) - DATA STRUCTURES
23:17
4.2 Implementation of Queue using Arrays | Data Structures & Algorithm Tutorials
23:06
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 23 МЛН