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 🙏✌
@celebratinglife8032 жыл бұрын
are you placed now bro?
@shivanidubey61822 жыл бұрын
@@celebratinglife803 mai bhi yhi puchhne vala tha😂😂
@sathwikgunder8713 Жыл бұрын
@@celebratinglife803 🔥😂
@subscribeplz834725 күн бұрын
@@19_sanketharvande25 where u got job ?
@emmanuelkaome71534 жыл бұрын
Ma'am, This is the best channel on KZbin followed by NESO academy , l have encountered so far. Thank you kindly for your explanations.
@Mojit002 жыл бұрын
Neso academy 💪🙏
@mdsharique23862 жыл бұрын
Saurabh shukla sir
@A-ONE991 Жыл бұрын
@@Mojit00 absolutely 💯
@sllanguageschool147 Жыл бұрын
But in terms of thus DSA, this chnnel is better than neso academy too
@talkingwithmemo Жыл бұрын
@anujonthemove2 жыл бұрын
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-CHHEMANTHGOUTHAMYADAV2 жыл бұрын
Sir where should write this insert at beginning code in the linked list code
@avhilashsethi11263 жыл бұрын
9:16 : code for beginning 17:00 : code for end 26:00 : code for after given location
@yomifkumsisabededa34692 жыл бұрын
thanks a lot !
@yashparmar57222 жыл бұрын
Thanks
@LavyaChauhan-mb7wnАй бұрын
GOAT
@LaysaBit3 жыл бұрын
Just subscribed to her! I'll pass my college years watching her videos. Love from Brazil!
@abdulrahmans68792 жыл бұрын
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...!
@TheJayshree114 жыл бұрын
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. 🤗🙏
@amitkoushik55044 жыл бұрын
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 Жыл бұрын
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-h5m5 ай бұрын
Is this working?
@pratyashab7Ай бұрын
tysm u are a life saver
@mmmmmm-t6p1c8 күн бұрын
🎉
@sggffdgcx37693 жыл бұрын
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
@StrollerEngineer5 жыл бұрын
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 🙏
@udaragunawardana54614 жыл бұрын
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-tech46915 жыл бұрын
Ohhh , just wow . Maam the quality content you are creating you must have 1million subs. Just loved the way you explain everything.
@nilayjayswal62373 жыл бұрын
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-cn3qw5 жыл бұрын
ma'am please make more video. like - stack, tree, recursion, interview question, leetcode solution etc. You are great teacher
@knowthrvdo Жыл бұрын
yes mam
@abhirupbasu9298 Жыл бұрын
Yes ma'am
@abdulrahimjalloh3638 ай бұрын
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
@CountMordecai4 жыл бұрын
Teachers like you are the reason why we pass university exams 😍😍😍
@Chris-xc2zg4 жыл бұрын
"pass with good marks"
@AdityaKumar-lw4yc4 жыл бұрын
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.....
@mohammedsisay44982 жыл бұрын
You have high potential to explain the course,I have never seen any one like you explain and try to easily understand the course.
@tistadutta76534 жыл бұрын
Hi i am from Gujarat .......ur is teaching amazing...... thank you for guideing for free
@pranjalnama24204 жыл бұрын
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 ❤️
@dishasuryavanshi54874 жыл бұрын
I have never studied linked list with that much interest...thank you so much mam😄
@akshitaagrawal44572 жыл бұрын
Speechless mam 🙏🙏 Concepts are extremely " 👌 "
@premalupadhyay35554 жыл бұрын
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.....
@tanishp2634 жыл бұрын
I have seen u grow from 500 subscribers till this day congratulations 🎉
@naziahaji14765 жыл бұрын
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
@pindipavan67484 жыл бұрын
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_HebaShakeel4 жыл бұрын
This woman is just fabulous. keep going Ma'am. You're just amazing
@srkonok5 жыл бұрын
Great effort... Love from Bangladesh
@PreetiSingh_11063 жыл бұрын
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..
@sarojmaharjan24472 жыл бұрын
You have been the life saver for most of us. THANK YOU VERY MUCH😍😍
@irinsaramathew7293 жыл бұрын
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.
@jayachandra6774 жыл бұрын
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!
@zaidshaikh25364 жыл бұрын
Same here
@Srustigowdavlogs2 жыл бұрын
Seriously I'm bunking my mca class to see ur videos...ur extraordinary teacher
@ankitpathak93342 жыл бұрын
What a session. All concepts related to insertion is clear in a single video only💯
@skygazer26782 ай бұрын
Whenever I need to revise, I come here. This is such a good channel.
@blank63564 жыл бұрын
May god bless you . You may live for 100 years. God sent angel fallen to earth to save data structure victims
@firstnamelastname35324 жыл бұрын
Only 100 years?
@blank63564 жыл бұрын
@@firstnamelastname3532 maybe more
@sumitkumar37104 жыл бұрын
The way u explained the insert after given position....mam u r doing lot to a students....it is priceless
@atharvakulkarni23195 жыл бұрын
Maam ur great, really these videos are really helpfull to understand concepts clearly
@apparaoneerumalla18914 жыл бұрын
I don't even like writing coding stuff ,by seeing ur videos now I'm now automatically trying my own of writing code Tq
@shubhisharma83714 жыл бұрын
Understood the concept very welll!! Thankyou Ma'am.
@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_Programming5 жыл бұрын
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 🙏🏻👍🏻✨
@adityaghaywat36484 жыл бұрын
You're*
@abhinavgarg67874 жыл бұрын
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
@bikashsantra40023 жыл бұрын
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; } }
@jecodedoncjesuis8753 жыл бұрын
awsome !!!
@ruchitakumari8912 жыл бұрын
Hey, thanks a lot🤩
@mohamedthoufiqm81082 жыл бұрын
👍🏿
@kunaljadhav2963 Жыл бұрын
Thanks
@prashanthiguntaka1416 Жыл бұрын
If we insert at beginning or ending counter variable is not increased
@derejekidanemaryam7722 Жыл бұрын
You are the best teacher I have ever met. You are very beautiful. I love everything about you
@mh58545 жыл бұрын
the best ever ever ever. thanks from kurdistan--iraq
@PankajKumar-qb9ic4 жыл бұрын
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...💕💕
@sourabhsharma49575 жыл бұрын
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.
@oluwatobiadeniyi34502 жыл бұрын
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.
@shankarshankar52985 жыл бұрын
there is lot off confusion but i understand it by my self thnk you mem your lecture very helpful.
@rimpinag63464 жыл бұрын
Yes me also ... i have also lot of confusion ...
@timelessseries52024 жыл бұрын
@@rimpinag6346 email me I will solve ur confusion
@timelessseries52024 жыл бұрын
Mam hotaa hai ✓
@TECHLAY-x4f Жыл бұрын
Fist time in my life I have written 100+ lines of code without error thankyou
@amanrubey3 жыл бұрын
I can't thank Jenny ma'am enough for making each line and my concepts crystal clear 💙
@navalsharma375 Жыл бұрын
I face too much problem at beginning but now everything is soo clear. All credit goes to mam's hardwork of us❤
@mrigankassarma74975 жыл бұрын
A complete program would allow beginners to comprehend the basics better....Anyways it was a great learning experience.❤
@susheelkumar70295 жыл бұрын
Mam,all lectures video of you are very good & It will help me to obtaining good mark in Data Structure ,Thank you
@tathirraza52485 жыл бұрын
Your way of explaining is "OUTSTANDING". Thank you 🙏💕so much ma'am
@mahifarooq23374 жыл бұрын
Love u so much Dear ma'am Watching from Kashmir !
@nandinikumari5862 жыл бұрын
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; } }
@commercekv84222 жыл бұрын
thank you bro
@NikhilKumar-ih5lv2 жыл бұрын
Bro mera head =0 mera code run nhi kar
@adarshgupta52552 жыл бұрын
@@NikhilKumar-ih5lv( head ==0 ) kro Bhai you are assigning the value not comparing ...
@adarshgupta52552 жыл бұрын
While (Choice = = 1)
@boomusic5658 Жыл бұрын
Plz convert it in c++
@dontbestlife336716 күн бұрын
You are very excellent mam, and an example of beauty with brain
@here4u253 жыл бұрын
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 . 🙏🙏
@sriparnachakraborty9745 жыл бұрын
Love ur videos maam
@rounakmukherjee95403 жыл бұрын
Mam , You are best. I don't have much words, just want to say THANK YOU.
@lalithyagnavalkya99005 жыл бұрын
"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-lw4yc4 жыл бұрын
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
@amitabharoy92414 жыл бұрын
lol bro...everytime mam does that..but its good actually
@harshavardhan63474 ай бұрын
we not understanding simplify your explanation
@rajeshranjan22933 жыл бұрын
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.
@bhaveshmoon19794 жыл бұрын
if( concept taught==by Jenny mam) { printf("Understood each concept"} } Thank you so much mam for such detailed explanation...
@sanasayyad1872 Жыл бұрын
💯 well u missed the semicolon 😅
@shyamsoni51533 жыл бұрын
medam your teaching method is very very very osm you are learn about topic everything thankyou so much .good bless you
@mdkaiserali68305 жыл бұрын
after description, please make complete program. cause it create difficulties for beginners
@rahulkumarsingh34175 жыл бұрын
True
@piyushgautam71424 жыл бұрын
Very true
@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_7135 жыл бұрын
Cleared all my doubts thanks a lot ma'am ❤️
@RELAXANDLISTEN644011 ай бұрын
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_5 жыл бұрын
Thanks madam,your lectures helped me a lot✨
@bhimarajuganesula58322 жыл бұрын
I got the complete clarity that how to insert the nodes in all the 3 conditions... Thankyou very much mam.....❤
@VicksGamingWorld5 жыл бұрын
Thanks mam 😊 & Happy Independence day in advance 💫
@JennyslecturesCSIT5 жыл бұрын
Happy Independence Day 😊
@cheeraneha22073 жыл бұрын
@@JennyslecturesCSIT hi mam your videos very use ful
@pragathipakadi45044 жыл бұрын
If a person is passionate at coding, then he/she must follow ur utube class's.Ur videos really help a lot..
@Beyrip11 ай бұрын
Can someone help me with the whole code of this?
@dusty1583Ай бұрын
@@Beyrip ok
@VINAYKUMAR-cv7nv11 ай бұрын
Nice Lecture , clear all my doubts
@PujaSharma-mb7gd5 жыл бұрын
You forgot about "count" variable in 'insert after a given position'
@harshranjankumar9644 жыл бұрын
ohhhh achaa ...
@anubharathor79554 жыл бұрын
Great way of teaching.....we need teachers like you...
@venkatanagasai47983 жыл бұрын
#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
@cobraigmoments5 жыл бұрын
paheli bar linked list paar ke achha laga. thanks ma'am for explaining so simply and clearly. ✌💖💥
@looppaddleanimation94884 ай бұрын
Thankyou mam, i could now understand how linked lists worked. Thankyou for explaining it to me.
@ritabritabasak56524 жыл бұрын
A thanks would be less for you, Ma'am, we're so lucky to get this channel on this platform
@rajprajapati76974 жыл бұрын
I stuck at 16;30 condition by my logic many times.... But only bcz of you i got it right... Thanks a lot.
@sam5940-y9g2 жыл бұрын
i was stuck on this topic and was waorried about the exam. thanks to you i am now feeling confident.
@badrip32372 жыл бұрын
Please tell me Why we shouldn't write while (temp!=NULL) for inserting node at Last ?
@anlackermann5902 жыл бұрын
@@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
@lxlogan14874 жыл бұрын
Madam ji, Aapne Sach me kamal kr dia ... Dil de Dua Aapke liye
@saichintada44713 жыл бұрын
Your way explaining is superb......mam
@adishgaikwad61384 жыл бұрын
wow i never thought my concept would clear in first time. Thank you soooooooooo much.
@bilwanath_kohinoor12154 жыл бұрын
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 Жыл бұрын
i love your teaching style, makes everything so clear! thank you so much jenny
@rajkshirsagar31684 жыл бұрын
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..
@prathampancholi63944 жыл бұрын
Best Teacher ever.Thank you very much mam
@souravsarkarofficials11 ай бұрын
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 ❤❤
@LoveIsLifeTurkishIndia4 жыл бұрын
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 Жыл бұрын
maja aa gya mam... you are teaching superbly.... Thank you so much mam...
@siddharthgupta82483 жыл бұрын
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.
@vivekvaddi50603 жыл бұрын
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
@induwaramihisara201611 ай бұрын
Your teaching skill is superb mam.Love from Sri Lanka💛
@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 Жыл бұрын
wow thought these were extremely difficult but I'm really enjoying these lectures