You are such a simple man and hard worker lots of respect sir!!!
@aldrinbenny75125 жыл бұрын
SIR,YOUR VIDEOS ARE VERY HELPFUL FOR ME AND MY CLASSMATES, YOU ARE TEACHING EXACTLY AS TAUGHT BY OUR SIR, LIKE PSEUDO CODE FOR WRITING ALGORITHMS.
@M丹4 жыл бұрын
Great class sir Im from kerala I had a assignment to submited so i just searching for the ans i have viewed several videos but your video is just a blast nothing to say sir awesome class sir hats off
@darkking3350 Жыл бұрын
Sir,at 17:22 instead of writing temp->next=temp->next->next.why don't we write temp->next=tail
@rahini76752 жыл бұрын
Superb explaination
@SamundeeswariM_4 жыл бұрын
Super and easily understood the concept
@rishavsingh18492 жыл бұрын
Amazing
@bhaktidukare71474 жыл бұрын
Best explained 😊
@omswarooproyal3 жыл бұрын
In deletion part i think we have to make node 2 next & prev fields as null. If not the node 2 is still pointing to previous and next nodes. Since it is not free to delete
@just_believer Жыл бұрын
Null dalo ya free kr lo dono main se null dalke vo node khtm hi smjho kuch bhi kr skte h? I think
@gabrielflavianus61893 жыл бұрын
wow the explanations are really easy to understand , he's sweating really hard btw
@pradeepkumarsingh69645 жыл бұрын
sir u r the best
@vikaspancharia49204 жыл бұрын
While disconnect the node-3, you said that we have to update node-2 next reference and node-4 prev reference only. but still node-3 pointing to node-2 and node-3 via next and prev reference of node-3. so it will not eligible for garbage collection it will still remain in the memory because it is pointing to node-2 and node-3. so could you please elaborate more in that.
@Haritha__sree__114 жыл бұрын
Yes
@baluvamsikrishna61973 жыл бұрын
For that bro temp->next=temp->next->next; temp->next->next=null; temp->next->prev=null; tail->prev=temp; (I know I have been posted this after a long time U posted question but. I hope it will be useful to next who are watching and referring this chat box for doubts
@karrisrisatyavenkatakishor47703 жыл бұрын
@@baluvamsikrishna6197 perfect
@Faith-is3bl Жыл бұрын
@@baluvamsikrishna6197thanks bro!
@holyshit9225 жыл бұрын
7:46 You assumed that list is not empty but after instruction head = head->next head may be NULL and in instruction head->prev = NULL you dereferenced NULL ponter which caused segfault It is tempting to have if(head==tail) { } as edge case but we should be careful on free behaviour
@mohdzameer57066 ай бұрын
can u write whole double linked list program
@maheerawaqas36835 жыл бұрын
Sir I have a question ..... sir u plz complie these pogram .... I can understand ur lecture but .... if u compile these pogram I will be thankful
@Touay4 жыл бұрын
Sir ur videos are helpfull !
@m.sibtenshekh47974 жыл бұрын
Very Very Thank you sir
@kiran58515 жыл бұрын
Excellent sir
@anuran61804 жыл бұрын
Best explanation Sir - your lectures helped me a lot thank you so much 😁
@abdiaziizcaana7485 жыл бұрын
Thank You Sir I have a question about deleting part for example I have created 3 nodes in run time if I need one node deleted and I added another one but if I deleted all node in the execution time. the program stopped and not allowed to inserting in run time because there is no node to connected and you need to run time and start in another time so how can we solve that problem I need to delete all node in run time and insert in execution time thank you sir
@PriyaM-bg1uh4 жыл бұрын
Thankyou sir
@NageshPanchal-do8wt5 жыл бұрын
Thank you very much sir
@abhisheknath52644 жыл бұрын
Thanks sir
@Gandhiboy3 жыл бұрын
Thank you so much ❤️
@SanjuSharma-cd3jq3 жыл бұрын
U just break the connection after deleting from specific position.... Also tell how to free it
@saitejaswi83215 жыл бұрын
Thank u so much sir
@San-pt1mx5 жыл бұрын
Tq so much sir
@monishkumar4964 жыл бұрын
we can give tail -> prev = temp for that instead of temp ->next -> prev = temp no sir for the deleting at specific position
@avanishtatikonda16762 жыл бұрын
Ya
@Allinone-ql5dj3 жыл бұрын
Ok 👌🆗️
@Anonymous-gj4km4 жыл бұрын
👌👌👌👌👍👍
@ayanghorai31625 жыл бұрын
Sir please make a video on complete code for link lists with functions.
@wahajmohammed19564 жыл бұрын
I guess the simplest way of deleting Node from beginning should be var nextNode = this.head.next // storing next Nodefrom head nextNode.prev = null; // Make the nextNode prev pointer to null this.head = nextNode; // change head to next node
@AkshitPanday5 жыл бұрын
Please make video on Linked List implementation using Arrays Plz plz
@arfairam40204 жыл бұрын
👍👍👍👍👍👍 Tsm
@srichanukya6603 жыл бұрын
instead of using temp of prev =null why cant we use temp of next=null. this will disconnect the link !!!!!!
@arastusharma4395 жыл бұрын
In the deletion from specified position can't we write tail->prev=temp instead of temp->next->prev=temp !?
@amruthdr83645 жыл бұрын
consider if it is having 5 nodes, and you want to delete the third element........ tail->prev won't work..... if the nodes are more than 4 nodes....
@vivekkv52904 жыл бұрын
Do while loop is not working sir
@basant84805 жыл бұрын
Exam me Algorithm yata he sir not implementation so please write Algorithm