Thank you so much for this perfect explanation..I was struggling understanding reverse doubly linked list until I watched ur video. Thank you again
@dhrupalprajapati3174 жыл бұрын
Nice sir , completely understood the topic and you are that much down to earth that everyone will like the way of explaining the topics.
@hopesalive20047 ай бұрын
I was literally struggling with this q for the last 2 hours, thank you from the bottom of my heart sir 😊
@abdulhadialamri48595 ай бұрын
Thanks so much. I just understand reversed Doubley linked list. I was trying to find an easy way to grasp this and I liked what you did here. :)
@vanbap3 жыл бұрын
I have struggled with this problem for 2 hours. Tks sir its really helpful.
@TheAllen5016 ай бұрын
The 1st time I understand Indian accent. You explained well. Thumbs-up!
@shreyashikha35066 жыл бұрын
U explained in a very easy way... Before I m so much f confusion in linked list but after watching ua video it helps me alot.. Thanku sir for uploading.. Can u plzz upload a video on circular singly linked list.
@sagarbora77683 жыл бұрын
Perfect explanation with iterations on every node !Found this svideo insightfull Sr!!!
@misatran11074 ай бұрын
finally, I can image the reverse process : ))) Thank u Mr Vive
@mohmmadsadi72687 ай бұрын
That's a great effort from you Vivedanand. But I think you forget the final step which is : To let Head pointer -> pointing to the temp (node 'e') ... Head = temp;
@sherifali484 Жыл бұрын
Finally i understood it thank you so much , your explanation is really good
@NatureLover-oq6uc Жыл бұрын
Very Good Explanation...Loved it
@vidpulse4267 Жыл бұрын
your explained is very powerful I hope make more useful video
@krishanudutta29433 жыл бұрын
You explained it very beautifully thanks a lot
@sravanthimarpu5625 жыл бұрын
Thank you sir ....need an explanation for quicksort on singly and doubly linked list
@franciscoencarnacao2156 Жыл бұрын
Perfect Explanation!! Thank you sir
@vaishnaviv7113 Жыл бұрын
Finally i understood the topic thank you sir
@deepanshduggal97427 жыл бұрын
Take a bow sir! Wonderful explaination
@sheldon94154 жыл бұрын
Thank you so much for this wonderful video.I totally understand.Very clear and nice explanation!
@7AMzUS2003 Жыл бұрын
thnx a lot mr vivekanand for your explanation
@birajdaimary24296 жыл бұрын
Sir make a video on circular linked list...and queue too...it will be help us a lot
@stockmarketinvestingforeve62635 жыл бұрын
At the bottom, temp = temp -> prev; shouldn't that be instead head = temp -> prev ; ? Great Video/Explanation, by the way.
@abhinavv58504 жыл бұрын
right
@alexlivadaru2865 жыл бұрын
Thanks a lot! I really needed this!
@Kgp-ty5dk5 жыл бұрын
brilliant explanation sir!
@amr199320124 ай бұрын
When was the step that head became tail and tail became head ?
@lsgtalk19963 жыл бұрын
superb explanation
@CodeNinjaByte Жыл бұрын
//meathod 1 using temp lag of curr by distance 2 // note that in the last element curr is pointint to NULL temp is pointing // to second last of list soo move to next of it if(head==NULL || head->next==NULL) { return head; } Node *curr=head; Node *temp=NULL; while(curr!=NULL) { temp=curr->prev; curr->prev=curr->next; curr->next=temp; curr=curr->prev;// or curr=temp; } return temp->prev; //meathod 2 using temp ahead of curr // note that in this temp is ahead of curr soo in last case //curr is NUll and temp is at null and we can iterate further //more so terminating condition needed otherwire curr->next is NULL->next(segmentation fault) if(head==NULL || head->next==NULL) { return head; } Node *curr=head; while(curr!=NULL) { Node *temp=curr->next; curr->next=curr->prev; curr->prev=temp; if(temp==NULL) { return curr; } curr=curr->prev;// or curr=temp; } return curr;
@anatulea5594 жыл бұрын
thank you! great explanation
@pranavvikharankar74565 жыл бұрын
plz sir post videos on how to calculate time complexity of program
@TheFitFiddler6 жыл бұрын
Wonderfully explained!
@tadessezelalem65556 жыл бұрын
tadesse
@RAVIKUMAR-ef4wo5 жыл бұрын
Bhai love you from hyderabad
@anum24715 жыл бұрын
explain about priority queue
@DivyaSingh-bl4cj2 жыл бұрын
09:18 Stamped with love, LINER
@DivyaSingh-bl4cj2 жыл бұрын
thanks for the great vedio
@ritik846295 жыл бұрын
life saver.thank you
@SilentNight_tour10 ай бұрын
good job sir
@ProgrammingLearning-v4c5 күн бұрын
that is helpful thanks
@rohitmarati85446 жыл бұрын
big thanks to you sir
@football34157 ай бұрын
Thank you man
@YasenAbker10 ай бұрын
Thanks a lot
@AkshayKumar-nm4ci6 жыл бұрын
Thanks Nyc Explanation
@aleenayt18703 жыл бұрын
Well done
@lokeshg89386 жыл бұрын
Please tell the whole program once .next 2 u tell this concept only
@edism2354 жыл бұрын
Thanks so much sir!!
@danact11353 жыл бұрын
you're great!!
@anandprakash49956 жыл бұрын
Java solution : while(head != null){ DoublyLinkedListNode i = head.prev; head.prev = head.next; head.next = i; if (head.prev == null){ return head; } head = head.prev; } return head;