Introduction to Linked List | C++ Placement Course | Lecture 22

  Рет қаралды 944,391

Apna College

Apna College

Күн бұрын

Пікірлер: 829
@lifeology9782
@lifeology9782 2 жыл бұрын
best video ab mujhe clear ho gya ki mujhe coding me nhi jana...🙂
@muhammadnomanhanif
@muhammadnomanhanif 10 ай бұрын
hahaha same bro lkn majbori h seekni pary gii
@Hateem-v7p
@Hateem-v7p 3 ай бұрын
😁😂
@biswaranjandash888
@biswaranjandash888 3 жыл бұрын
Kuchh Samajh Nahi Aaaya...Par Sunke Achha Lagaaaa :)
@ytnoadds2524
@ytnoadds2524 3 жыл бұрын
Didi ka naam kya hai
@zaeemAtif
@zaeemAtif 3 жыл бұрын
@@hercodes nhi, karega koi join. Ham online free mei hi padenge :|
@pickachoogaming7976
@pickachoogaming7976 3 жыл бұрын
Kya samaj nhi aa rha itna pyara to smjhaya hai
@momozkichutney
@momozkichutney 3 жыл бұрын
@@ytnoadds2524 11:11
@tanishasethi7363
@tanishasethi7363 3 жыл бұрын
@@momozkichutney nice observation 😂
@swapnilsrivastava9407
@swapnilsrivastava9407 3 жыл бұрын
Jisko pehle se aata hain uske liye to best hain bahut new chj pta chala thankyou didi 😍
@KrishnaSharma-bv5ys
@KrishnaSharma-bv5ys 3 жыл бұрын
Perfect example of everyone with knowledge is not a good teacher....
@stillaweeb667
@stillaweeb667 2 ай бұрын
Acha toh padhaya bruh... 3 saal baad got new opinion?
@shubham.s8934
@shubham.s8934 3 жыл бұрын
Starting be like: Array mein size hota hai, Array accha nahi hai, Array is fixed, Link list has more advantages End: Isse accha toh array hi bana leta....
@parthkabra8880
@parthkabra8880 3 жыл бұрын
bhai vector hi use karle
@harshbhansali1327
@harshbhansali1327 3 жыл бұрын
@@parthkabra8880 woi to be!
@sumitsharma6738
@sumitsharma6738 3 жыл бұрын
xdddddddddddddd shi batt hai
@anand.suralkar
@anand.suralkar 3 жыл бұрын
array fragmented memory me ban hi nahi sakta to banaoge kaise bhai
@abhishekKUMAR-ij7nw
@abhishekKUMAR-ij7nw 3 жыл бұрын
bhai sabka apna importance hai
@aryarajput9011
@aryarajput9011 3 жыл бұрын
And that's where difficulty start and competition drops !!
@cswd428-yaswanth3
@cswd428-yaswanth3 3 жыл бұрын
Yup 🔥 of DSA ❤️
@yupp_harish3936
@yupp_harish3936 3 жыл бұрын
yes
@ashmitsharma9096
@ashmitsharma9096 3 жыл бұрын
difficulty on linked lists 🤣🤣🤣
@mohitparker8602
@mohitparker8602 5 ай бұрын
damn this comment section is clear example that there is no competition in reality
@siddharthabhunia7897
@siddharthabhunia7897 2 жыл бұрын
Full Code Of This Video #include #include using namespace std; // Create A class node class node{ public: int data; node* next; // Node Class Constructor node(int val){ data=val; next=NULL; } }; // Insert Element At Tail void insertAtTail(node* &head,int val){ node* n=new node(val); if(head==NULL){ head=n; return; } node* temp=head; while(temp->next!=NULL){ temp=temp->next; } temp->next=n; } // Display All Element void display(node* head){ node* temp=head; while(temp!=NULL){ coutNULL 345->12->178->1788->NULL 1
@humanity7880
@humanity7880 2 жыл бұрын
thanks notes wala link open nhi ho rha tha
@gamingworld3041
@gamingworld3041 2 жыл бұрын
insertAtTail(head,12); insertAtTail(head,178); insertAtTail(head,1788); can you tell me in function call why we are we writing head
@moonlight-td8ed
@moonlight-td8ed 2 жыл бұрын
@@gamingworld3041 because you using head function in above void functions which was declared in main function....
@ankitanand3324
@ankitanand3324 2 жыл бұрын
Thanks
@starsinger4121
@starsinger4121 2 жыл бұрын
This code is from apni kaksha
@rakesh2081
@rakesh2081 4 жыл бұрын
I think this video is meant for her own revision 😑
@Rohan-rz2qn
@Rohan-rz2qn 3 жыл бұрын
Actually yes bro I also feel difficult to understand
@yashagrawal3503
@yashagrawal3503 3 жыл бұрын
@@Rohan-rz2qn gfg op
@21AniketThakre
@21AniketThakre 3 жыл бұрын
These series is for revision purpose . 🥴
@venkateshsuryawanshi7011
@venkateshsuryawanshi7011 3 жыл бұрын
@@Rohan-rz2qn easy bro if u want to display or search you pass it as simple But if u want to traverse head from one place to another pass by refference
@YadavDheeraj2000
@YadavDheeraj2000 3 жыл бұрын
😂😂😂😂
@piyushgupta1381
@piyushgupta1381 4 жыл бұрын
Is this introduction for iit bombay STUDENTS..? i think they can't understand this introduction
@ayushkamboj2812
@ayushkamboj2812 3 жыл бұрын
From this video difficulty increases and our competition drops🤭
@ranjanmondal8346
@ranjanmondal8346 2 жыл бұрын
😂
@SomilSrivastava2406
@SomilSrivastava2406 Жыл бұрын
😂😂😂😂
@SARTHAK_K._PATRO
@SARTHAK_K._PATRO 4 жыл бұрын
Not very good explanation for a beginner... No offence but it could have been better. Thank u for this series
@prantikofficial
@prantikofficial 4 жыл бұрын
Exactly
@madovergaming2002
@madovergaming2002 4 жыл бұрын
Not at all good
@arijitbhakta9705
@arijitbhakta9705 4 жыл бұрын
Obviously
@sansheva7333
@sansheva7333 3 жыл бұрын
BECAUSE YOU JUMPED STRAIGHT TO THIS VIDEO WITHOUT SEEING THE PREVIOUS VIDEOS.
@madovergaming2002
@madovergaming2002 3 жыл бұрын
@@sansheva7333 linked list is a separate topic.. And this video is the introduction of Linked list.. So it should have been more comprehensive
@SJ-qr7qp
@SJ-qr7qp 2 жыл бұрын
****Creating single Node***** # include using namespace std; class Node { public: int data; Node* next; Node(int data)//creating constructor to fill data in node { this->data = data; this->next = NULL; } }; int main() { Node* node1 = new Node(10);//creating object node1 of node class and allocating dynamic memory to it cout data next = NULL; } }; void insertAtHead(Node* &head, int d)//here done by referance { Node* temp = new Node(d);//creating a pointer temp of Node class and allocating dynamic memory and also creating Node with value d temp->next = head;//assigning temp's next to head of node1 head = temp;//shifting head position from node1 to temp } void print(Node* &head) { Node* sk = head;//here i have passed by referance and i dont want ot change value of head so i created another pointer of name "sk". while (sk != NULL) { cout next = NULL; } }; void insertAtHead(Node* &head, int d)//here done by referance { Node* temp = new Node(d);//creating a pointer temp of Node class and allocating dynamic memory and also creating Node with value d temp->next = head;//assigning temp's next to head of node1 head = temp;//shifting head position from node1 to temp } void print(Node* &head) { Node* sk = head;//here i have passed by referance and i dont want ot change value of head so i created another pointer of name "sk". while (sk != NULL) { cout next;//finding the last position of linked list } tail->next = new Node(d);//adding element to the linked list } int main() { Node* node1 = new Node(10);//creating pointer node1 of Node class and allocating dynamic memory to it and also create node with data 10 Node* head = node1;//creating head pointer and pointing where node1 pointer is pointing insertAtHead(head, 12);// passing data of element which is to be inserted insertattail(head, 4354); insertattail(head, 234); insertattail(head, 21); print(head); return 0; }
@ShubhamKumar-pv8pj
@ShubhamKumar-pv8pj 3 жыл бұрын
Guy's in case you don't understand this topic Keep in mind we are first making a node and then linked them by address of other nodes and initially head is null but in further calls head has address of first node and only temp changes it's address i.e it store address of node from which we link it to other
@bohotsaaridhop
@bohotsaaridhop 3 жыл бұрын
node* next ka meaning batana
@killingjoyandmemeing
@killingjoyandmemeing 3 жыл бұрын
@@bohotsaaridhop node* next current block ke ptr address ko point karega which has the enxt address
@rocknroll6768
@rocknroll6768 3 жыл бұрын
@@bohotsaaridhop if you are confused plz check codewithharry channel and search for DSA playlist.. no one can explain like him .
@swapnilkumar4411
@swapnilkumar4411 3 жыл бұрын
Bhai plzzz tell me why she wrote node* &head bcoz head is a pointer and he will store the address of first node in head.. then what is the meaning of writing &
@pureJavascript
@pureJavascript 3 жыл бұрын
@@swapnilkumar4411 & is for changing actual head value wrna copy jaati h function m
@rahulkumarsingh7615
@rahulkumarsingh7615 4 жыл бұрын
I can't understand anything, but i am trying to understand that😂
@someshsangwan5302
@someshsangwan5302 3 жыл бұрын
same here
@29-rahulsinha91
@29-rahulsinha91 2 жыл бұрын
Samaj aaya bhai?
@rahulkumarsingh7615
@rahulkumarsingh7615 2 жыл бұрын
@@29-rahulsinha91 yes bro,ab toh placed v ho gya mai😂
@atomicneutron_
@atomicneutron_ 2 жыл бұрын
​@@rahulkumarsingh7615 how? things needed to get good placement?
@AbhishekKumar-nz9dn
@AbhishekKumar-nz9dn 2 жыл бұрын
@@rahulkumarsingh7615 kaha lgi bhai placement ? btw congratulations bro
@rutvikrana512
@rutvikrana512 4 жыл бұрын
Very good explanation of linked list. 😊 Why to use LL ? When we want to add or remove elements very often and little need to traverse or search elements. Example: stack and queue -> we are using pointer of Node instead of class node. Node * n = new Node(0) -> & before variable on method parameter represent reference by location. If we don’t want to use & then we need to return head node of LL. Node * Insert( Node * head ) { ... } Happy learning 😊
@janvimyadventures1310
@janvimyadventures1310 4 жыл бұрын
What is node* next Isn't it's data type node?
@janvimyadventures1310
@janvimyadventures1310 4 жыл бұрын
❤️❤️❤️you are osam
@anshumankumarnathshahdev3090
@anshumankumarnathshahdev3090 3 жыл бұрын
lets make an telegram group to resolve errors i am facing lots of issues too
@krishanudutta2943
@krishanudutta2943 3 жыл бұрын
#include using namespace std; class node { public: int data; node* next; node(int val) { data=val; next=NULL; } }; //Function to insert a node at end void insertAtTail(node* &head,int val) { node* n=new node(val); if(head==NULL) { head=n; return; } node* temp=head; while(temp!=NULL) { temp=temp->next; } temp->next=n; } //Function to print the linked list void display(node* head) { node* temp=head; while(temp!=NULL) { cout
@rameshmalhotra9525
@rameshmalhotra9525 2 жыл бұрын
kzbin.info/www/bejne/qnK0en6bZbp6fpY
@chillegaming1837
@chillegaming1837 5 ай бұрын
For those of you complaining that they can't understand from this video (majority), it's honestly your fault, you dont have your previous concepts cleared, nor you people know the basic terminologies 🤣, watched this video for the first time, grasped everything in one go ! Ab ye thodi na ki Linked list padhana hai, toh ye bataye ki what are pointers, arrays, constructors, OOPS, etc...
@user-uknzaus
@user-uknzaus 5 ай бұрын
exactly mene v kaafi negatuve comments dekha to lga yrr .... but explanation was pretty good
@nazibuddin480
@nazibuddin480 3 жыл бұрын
What will we do with animations when most of us cant understand any thing??? this is what you call the best course??
@artificialintelligencestud1684
@artificialintelligencestud1684 2 жыл бұрын
My favorite in KZbin you Madem
@dreamdu3055
@dreamdu3055 17 күн бұрын
0.00 intro of algo 5:23 insert at tail 9:20 display 11:37 insert at head 13:30 searching
@examway8157
@examway8157 4 жыл бұрын
I get your every point easily bcoz your way of teaching 👍
@rishiremju
@rishiremju 3 ай бұрын
Very good explanation. Thank you.
@mohitparker8602
@mohitparker8602 5 ай бұрын
thank you its really good explanation its fast paced but still helpful don't see other comments its just not meant for begineer they cant comprehend to it
@ManasD01
@ManasD01 28 күн бұрын
Best Vedio only one con was that , before ending vedios scroll the code from top to bottom slowly so that we can note it easily
@clashchamp2844
@clashchamp2844 2 жыл бұрын
Increased my confusion even more🙆🏻‍♂️😂🤣 why did I choose to see this vid🤣🤦🏻‍♂️
@dhairyshrivastava
@dhairyshrivastava 2 жыл бұрын
this is literally superb !!! I was having error writing the code , and few channels only covered only the concept part and left the code . the other problem was most channels have used malloc fn .I skipped c lang and was having trouble to write the code in cpp using new. Thanku so much
@diwanchand9764
@diwanchand9764 Жыл бұрын
I can help you
@bishnupadadas4842
@bishnupadadas4842 Жыл бұрын
​@@diwanchand9764 yes
@adityabhandari6688
@adityabhandari6688 3 жыл бұрын
I had to watch this video twice at .75 to understand the topic
@anavchug2140
@anavchug2140 3 жыл бұрын
She is running so fast through the whole video and assuming we understand every line of code, and not deliberately putting in effort to explain.
@gauravroy4748
@gauravroy4748 3 жыл бұрын
Osmm mam... What an explanation..meko bht achchhe se smjh aya 😊
@anuragpandey3341
@anuragpandey3341 3 жыл бұрын
Now this is the beginning of intermediate DS........arrays and string were elementary level DS.
@amans124
@amans124 2 жыл бұрын
Finally After 6 months I know How to Implement Linked list🙂🙃
@akshaykumar192
@akshaykumar192 2 жыл бұрын
😂
@vagabondfoodie5788
@vagabondfoodie5788 2 жыл бұрын
Bro any source through which I can learn linklist literally I am facing a lot of problem 😫😫😫😫😫😫😫😫
@amans124
@amans124 2 жыл бұрын
@@vagabondfoodie5788 Just revise Classes objects and pointers in c++ to understand structure of linked list
@roshanrawat9361
@roshanrawat9361 3 жыл бұрын
Her way of teaching is very comolex
@roshanrawat9361
@roshanrawat9361 3 жыл бұрын
Complex
@incrediblejava
@incrediblejava 3 жыл бұрын
This series is for who are preparing for placement interviews not for beginners means it is for 4th year students.
@webseriesworld1791
@webseriesworld1791 3 жыл бұрын
It takes 15 minutes less than 2 hours to understand this stuff !!!! Even i know a bit about Linked List Earlier Its a Good Revison for me and also a Preparation !!!!
@motivationrock2094
@motivationrock2094 3 жыл бұрын
Understood mam🥺😳😳 thanks soooooo muchhhhhh
@guptasitanshu
@guptasitanshu 10 ай бұрын
Comment section of videos always saves my time ❤
@iamdj8540
@iamdj8540 3 жыл бұрын
this series is not up to the mark bro very difficult for begginers to understand no use of animation cant understand a thing i have started to use it as a referance to what to study next and nothing more
@footballcrazz4355
@footballcrazz4355 3 жыл бұрын
If you are referring to the beginning of this topic than Strongly disagree, I was able to grasp alot although it is my first time but if you are referring that this as the beginning of this topic in programming then first you should start off with arrays, this is a bit advanced
@pranalishyamkuwar6691
@pranalishyamkuwar6691 3 жыл бұрын
i completely agree :(
@iamdj8540
@iamdj8540 3 жыл бұрын
@Hungama Toons no bro its about the way they explain its not easy to understand they claim it is the best course for c++ but i don't think so.
@abhinavmishra9323
@abhinavmishra9323 3 жыл бұрын
bro go for saurabh shukla's paid course , it will take time, he will only teach you about 10% of what this course is teaching you, but after that, you will be on another level because unlike these guys , he gives problem in one class and discusses only when students are unable to figure it out themselves. SO he gave us linked list concept and we have to come up with code the next day. This takes time but it increases your level like anything. But do this course side by side also.
@hemantsudarshan2477
@hemantsudarshan2477 3 жыл бұрын
Bro, you got my point!!
@rebeccanunes2854
@rebeccanunes2854 6 ай бұрын
This was sooooo helpful. Thank you :)))))))))))))))))))
@ImPushpendraPal
@ImPushpendraPal Жыл бұрын
ma'am aapne kafi acha explain kiya hai thanks
@sudeepbhagat5027
@sudeepbhagat5027 3 жыл бұрын
Mam apka na "thoda thoda "bolne ka jo andaj hai woo mujhe bahut pasand aaya
@jobsalert24pk61
@jobsalert24pk61 Жыл бұрын
Very very helpful 👍 lovely 😍
@abhinavmishra9323
@abhinavmishra9323 3 жыл бұрын
There is another full oop way to do these data structures in which we make all the functions as member function of class linked list and make another structure node as the private member of the class.
@sherazali8691
@sherazali8691 3 жыл бұрын
This is what I was thinking about when She created node class with lowercase n. 🙂
@sakshamjain1717
@sakshamjain1717 Жыл бұрын
Literally today I understood why people say learning DSA is tough ,, definately they are learning from these tutorial I would suggest beginners to go for a channel or video where you make understand each basic thing
@mrboon8856
@mrboon8856 3 жыл бұрын
Guys if you don't understand this video , please mark my word ,ye video beginner ke liyea nahi hai , please kahi aur se dek lo , but dukhi na hona ,jab aap padh lena to yaha se revision karna ok
@sahilsawal
@sahilsawal 4 жыл бұрын
Awesome Maam :) 🔥👌👍😎😇👏✌🙏
@iamsus3144
@iamsus3144 4 жыл бұрын
thx for the video the video helped me so muchhhhh live long didi and aman bhaiya
@Gaurav-fb9ds
@Gaurav-fb9ds 3 жыл бұрын
I have never seen such a Superb video understood every thing and now going to crack all product based companies.
@indiraparajuli9715
@indiraparajuli9715 3 жыл бұрын
This video time and space complexity is O(n^100). Didn't understand a bit. And you are gonna crack all product based companies 😜
@yupp_harish3936
@yupp_harish3936 3 жыл бұрын
🤣
@Newton.968
@Newton.968 Ай бұрын
Bhai crack kiya kya product based company
@AbhishekKumar-ue2qx
@AbhishekKumar-ue2qx 4 жыл бұрын
I think there should be discussion on how to insert between the two nodes of linked list
@sionchowdhury2198
@sionchowdhury2198 3 жыл бұрын
hey bro just wanna give u a tip, imagine linked list as a train, thats it
@yashvats824
@yashvats824 3 жыл бұрын
@@sionchowdhury2198 train is doubly linked list
@someshsangwan5302
@someshsangwan5302 3 жыл бұрын
@@yashvats824 ohh
@rameshmalhotra9525
@rameshmalhotra9525 2 жыл бұрын
kzbin.info/www/bejne/qnK0en6bZbp6fpY
@DJ-jf4qg
@DJ-jf4qg 2 жыл бұрын
feeling blessed when everthing is clear in first watch
@arjunyadav-kt5jr
@arjunyadav-kt5jr 2 жыл бұрын
Kitni saaf boli hai mam ki❤️
@mdimranhosen6674
@mdimranhosen6674 3 жыл бұрын
Thanks You so much.Your tutorial make me happy.
@harshpatel2090
@harshpatel2090 3 жыл бұрын
Best series for intermediate Programmers
@adityajoshi3922
@adityajoshi3922 4 жыл бұрын
i did not understand anything when i saw the video for the first time but after watching the video 2/3 times i am getting the hang of it thank you for posting such content
@giggleglyphs
@giggleglyphs 3 жыл бұрын
Check simple snippets dsa series
@amayatre3558
@amayatre3558 3 жыл бұрын
Bss isiliye mai video dekhne ke pehle comment section me aata hoon 🤯
@tanishasethi7363
@tanishasethi7363 3 жыл бұрын
🤣
@PlayShaban
@PlayShaban 3 жыл бұрын
Mene codes ko ratta maar liya tha, 20 days practice kiya and now I totally understand. I’m able to write codes to insert and delete the elements by my self. Linked list is nothing but, “Adding more objects to any class and linking them by using pointers”. That’s how memory can be dynamic.
@abhinavmishra9323
@abhinavmishra9323 3 жыл бұрын
here's an advice: Don't look at solution without giving a try . Understand the concept and try to code yourself. Then you will have no issues with this course.
@internetwithsahir
@internetwithsahir 2 жыл бұрын
Thanks 👍🏻 love from Pakistan 🇵🇰
@suryanshurana766
@suryanshurana766 3 жыл бұрын
Its better to make long videos like saurabh shukla sir or durga sir than short quick music videos but I salute to your efforts.
@sheetaljadhao9067
@sheetaljadhao9067 3 жыл бұрын
No one can explain like saurabh shukla. That man is on another level.
@DawoodRizwan-k7f
@DawoodRizwan-k7f 8 ай бұрын
Array and link list is so easy...
@philosphize
@philosphize 4 жыл бұрын
This was most awaiting, I always get confused to solve link list problm, hope I can now understand this properly and solve the problm
@harshpanwar1550
@harshpanwar1550 2 жыл бұрын
Thank u very much Ma'am...🙏
@anmoldhiman3771
@anmoldhiman3771 3 жыл бұрын
complete insertion in linked list of all type. #include using namespace std; class node { public: int data; node *next; }; void print(node *head) { while (head != NULL) { cout data next; } cout data = val; temp->next = head; return temp; } node *insert_at_end(node *head, int val) { node *p = head; while (head->next != NULL) { head = head->next; } node *temp = new node; temp->data = val; head->next = temp; temp->next = NULL; return p; } node *insert_at_index(node *head, int val, int index) { node *p = head; node *temp = new node; temp->data = val; int n = 0; while (n != index - 1) { head = head->next; n++; } temp->next = head->next; head->next = temp; return p; } node *insert_by_value(node *head, int val, int check) { node *p = head; node *temp = new node; temp->data = val; while (head->next->data != check && head->next != NULL) { head = head->next; } if (head->next->data == check) { temp->next = head->next; head->next = temp; } return p; } int main() { node *a = new node; node *b = new node; node *c = new node; a->data = 1; a->next = b; b->data = 2; b->next = c; c->data = 3; c->next = NULL; print(a); a = insert_at_begining(a, 4); print(a); a = insert_at_end(a, 5); print(a); a = insert_at_index(a, 6, 2); print(a); a = insert_by_value(a, 7, 6); print(a); return 0; }
@indiraparajuli9715
@indiraparajuli9715 3 жыл бұрын
Wow
@jyotipandey3156
@jyotipandey3156 3 жыл бұрын
N coz of uh people..we knw that .. quality content...is stilll available free of cost...in this xpensive world❤️❤️❤️❤️❤️....❤️❤️❤️❤️ thanks a lot❤️
@nishithkotak5002
@nishithkotak5002 7 ай бұрын
Thanks for such amazing videos. Can you plz share the notes and code of the playlist for learning purpose. Thanks
@sourabhpatil1392
@sourabhpatil1392 Жыл бұрын
Very Nice Videos....
@raman015
@raman015 3 жыл бұрын
Your explanation is too good I understand very well if anyone who want to understand this video then watch maximum 3 or 4 times and implement this code also 2 or 3 times
@PiroCoder
@PiroCoder 4 жыл бұрын
kiskisko samajh nhin aaya
@DTALKS01
@DTALKS01 Жыл бұрын
Ek bari me nahi aayega ..... Har line of code ko Break down Karo and 4-5 baar baad aajayega
@aniketdev1157
@aniketdev1157 Жыл бұрын
​@@DTALKS01sahi kaha
@zakryashakeel1883
@zakryashakeel1883 Жыл бұрын
mujy nh smj aa ya koi samja do
@zakryashakeel1883
@zakryashakeel1883 Жыл бұрын
​@@DTALKS01ap ko ya smj ha? kindly mra kituch douts han vo solve kara dan
@syedmuhammadabdullah2920
@syedmuhammadabdullah2920 Жыл бұрын
ye bskwas samghati hy
@maheshbk-dh1co
@maheshbk-dh1co 2 жыл бұрын
best..in the internet
@ritwikchawla9000
@ritwikchawla9000 4 жыл бұрын
Kuch samaj mai nahi aaya prr sunke acha lagga 😁😂🤣😁😂🤣😅😆 @Apna College
@salikansari8981
@salikansari8981 3 жыл бұрын
Finally, understood linked list after 3 days of confusion.
@0070vishal
@0070vishal 3 жыл бұрын
apni kaksha's only starting videos are good. if youll follow this whole playlist step by step youll get demotivated
@arpitk5912
@arpitk5912 3 жыл бұрын
same bro..are you following this course?
@0070vishal
@0070vishal 3 жыл бұрын
@@arpitk5912 was. i stopped
@arpitk5912
@arpitk5912 3 жыл бұрын
@@0070vishal so following something else or what
@0070vishal
@0070vishal 3 жыл бұрын
@@arpitk5912 still looking bro. doing some questions and some videos watching from youtube
@subhamsingh_cse6310
@subhamsingh_cse6310 3 жыл бұрын
While watching this I thought I am the only one who didn't understand whats going on😂then I saw cmmnt section... Alag rahat mili
@shirgaonkarved3780
@shirgaonkarved3780 3 жыл бұрын
while code implementation ,if the process of implementation like what's happening behind the code in memory is shown visually with help of diagram it will be more helpful
@harshpatel2090
@harshpatel2090 3 жыл бұрын
Its a very nice idea
@smritigupta1468
@smritigupta1468 Жыл бұрын
She actually teaches very good
@djrockzz1163
@djrockzz1163 2 жыл бұрын
Indian Hindi : Mujhe!! Hyderabadi Hindi : Merko!! In English its : To me
@calmyourmind5617
@calmyourmind5617 3 жыл бұрын
I am from a non cs backgrnd and I can explain more clearly than this. She did not explain the underlying concept behind every move she made. It is not easy to explain linked list in a clear manner. It takes longer time than this video length. Anyone who tries to understand from this lecture will end up hating the concept. But it is very easy if you learn it in a clear way.
@ardhendudas1834
@ardhendudas1834 4 жыл бұрын
Aman bhaiya is doing great work also our teachers are great . Thank you team...
@avians7335
@avians7335 3 жыл бұрын
It took me 3 hours to understand the video. But now I have understood every single concept of it 👍😇🤟
@aryandas1129
@aryandas1129 3 жыл бұрын
Please give your mail / whatsapp number
@sleepypanda7172
@sleepypanda7172 3 жыл бұрын
same 🤟
@avians7335
@avians7335 3 жыл бұрын
@@aryandas1129 kyu bhai?
@chanduchandrakanth5131
@chanduchandrakanth5131 3 жыл бұрын
Bro, she did not taken any value in constructor node(int value)
@sapnadipbaidya7757
@sapnadipbaidya7757 3 жыл бұрын
people who cant understand plz read basics of cpp. these are easy to grasp but iff youknow basics of cpp
@devashish7724
@devashish7724 3 жыл бұрын
Such a nice video....learnt something interesting
@shivamsingh20
@shivamsingh20 4 жыл бұрын
very good explanation di.....
@dibyajyotimahuri907
@dibyajyotimahuri907 4 жыл бұрын
Thank u so much for this course bhaiya
@karanrai6772
@karanrai6772 4 жыл бұрын
I am also
@pritishpattnaik4674
@pritishpattnaik4674 4 жыл бұрын
mam , plz make a video to insert a node at a given position..
@Zaib-j7i
@Zaib-j7i Жыл бұрын
this video is strictly not for beginners 😂
@saqibsyed1014
@saqibsyed1014 2 жыл бұрын
You made it so clear that I think LL is the most easy concept in DSA hhaha
@molviwithskills
@molviwithskills 2 жыл бұрын
😂😂😂 what a great lie
@saqibsyed1014
@saqibsyed1014 2 жыл бұрын
@@molviwithskills Not lying. I got the whole concept.
@humdaanmirza8963
@humdaanmirza8963 Жыл бұрын
Ever thaught why array over linked list ? beacuse array is cache friendly it is a contigious block of memory and lineked list is scattered in memory so when elements of array are accesed maney times it is stored in chache memory by operating system to improve efficieny of program but o.s cannot put nodes of linked list in cache memory beacuse theuy are not contigious This allocation cache memory is called locality of refrence which is there in array but not in Linked List . Happy lerning :)
@SARTHAK_K._PATRO
@SARTHAK_K._PATRO 4 жыл бұрын
Animation shud have been given by displaying nodes...you could take inspiration from log2base2
@kazamali910
@kazamali910 Ай бұрын
Thk hai yrr 😊
@hyper8x8
@hyper8x8 3 жыл бұрын
This video is good if you already know 80% of linked list and this will clarify your rest 20%. But if you don't then you will understand nothing.
@SatyamKumar-pd8qy
@SatyamKumar-pd8qy 3 жыл бұрын
Thik hai😄😍❤❤
@iamnoob8298
@iamnoob8298 4 жыл бұрын
Aman bhaiya android app development ka bhi course daal dijiye naah hum bahut aabhar ❤️❤️
@avinashchaurasiya6497
@avinashchaurasiya6497 3 жыл бұрын
pls, make it beginner-friendly.👏
@jaunabbas5484
@jaunabbas5484 2 жыл бұрын
those who not understand this hope one day u will get it
@sujalgupta2325
@sujalgupta2325 3 жыл бұрын
good content and way of delivery is appreciable
@balleballey
@balleballey 3 жыл бұрын
Nice explanation
@dreamdu3055
@dreamdu3055 19 күн бұрын
It is hard to understand but not impossible I watched 5 times than I got things Focus on Next Data and head
@sumitpanchbhai6280
@sumitpanchbhai6280 3 жыл бұрын
#include using namespace std; class node{ public: int data; node* next; }; void display(node* n){ while (n!=NULL) { coutnext=second; //a pointer pointer to next pointer second->data=20; second->next=third; third->data=30; third->next=NULL; display(head); }
@veekysoft
@veekysoft 3 жыл бұрын
Ultimate discription.
@bat_man1138
@bat_man1138 3 жыл бұрын
Bas yahan se khel shuru ...isse pehle tak trailer tha🙃
@cenacr007
@cenacr007 4 жыл бұрын
guys do not panic this whole playlist is for question practice not theory if your theory is not good or clear then please go somewhere else like NPTEL and then come here to practice questions otherwise you will regret it...You need a proper foundation first before you can practice questions.
@kunaldeshmukh2988
@kunaldeshmukh2988 3 жыл бұрын
It's perfect 🔥to understand linked list properly,thank you for the wonderful video 😀well animated,well described and complete knowledge...
@kartikverma8070
@kartikverma8070 3 жыл бұрын
why we are taking adress of head in insertattail fuction but taking directly head in display
Deletion in Linked List | C++ Placement Course | Lecture 22.2
6:22
Apna College
Рет қаралды 275 М.
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 958 М.
2.4 Linked List Implementation in C/C++ | Creation and Display | DSA Tutorials
29:01
Jenny's Lectures CS IT
Рет қаралды 1,9 МЛН
Watch this before you start Coding! 5 Tips for Coders
13:53
Apna College
Рет қаралды 481 М.
Reverse a Linked List | C++ Placement Course | Lecture 22.3
9:03
Apna College
Рет қаралды 310 М.
Introduction to Linked List in Data Structures (With Notes)
25:01
CodeWithHarry
Рет қаралды 1,5 МЛН
16.1 Recursion - Introduction | C++ Placement Course
23:51
Apna College
Рет қаралды 417 М.
How to Create a Linked List C++ Introduction to Linked Lists
12:24
Paul Programming
Рет қаралды 947 М.
2.1 Introduction to Linked List | Need of Linked List | DSA Tutorials
22:11
Jenny's Lectures CS IT
Рет қаралды 1,4 МЛН
11. Pointers in C++ | Guaranteed Placement Course
19:03
Apna College
Рет қаралды 698 М.