6:47 Can you just declare p as the last node so that it saves time? Maybe add a tail node?
@NehaKumari-yf9bh6 жыл бұрын
thanks sir !!! best explanation on deletion of doubly linked list
@muskansinghal44676 жыл бұрын
can you please post about insertion and deletion in circular linked list? its a request please. Your methods are quite understandable and easy to learn.
@adityasrivastava28145 жыл бұрын
Thanks a lot sir!!!Your videos are really helpful!!!
@anupmasaxena83992 жыл бұрын
Hello sir, can u please make video on circular linked list
@kaushikjain94234 жыл бұрын
ek dum mast samjaya sir aapne
@alekhyaali72736 жыл бұрын
thank you ....thank you so much sir......your teaching is awesom.......it was really helpful for me....
@143_monika52 жыл бұрын
Thank you so much. It will help me a lot ❤️
@shivamnehra55324 жыл бұрын
thanks man ! your videos are more understandable
@kobepwe25135 жыл бұрын
It should be While (p== "d node") because u still haven't delete anything and if u are, while(p!=delete position) should stop at "c node". But still great lecture. Will watch other vids too.
@priyammukherjee97255 жыл бұрын
why did we use delete p and not free?
@kobepwe25135 жыл бұрын
@@priyammukherjee9725 its okay whatever you want to use. Its just a variable name. It will still work
@williamjava7 жыл бұрын
You should teach the course in my University! Excellent professor
@yaleboost44005 жыл бұрын
thanks very much best explanation i get main point rather than my lecture continue to another algorithm topics """""""""""""" KEEP IT"""""""
@nileshvelip907 жыл бұрын
last movement sir u r very help ful to me. thanku soooooo much sir
@vivekanandkhyade7 жыл бұрын
Thanks Nilesh..!
@devotion_surya37414 жыл бұрын
Sir, you are great 💥💥
@grozavklaus19005 жыл бұрын
Great job , thanks sir , i hope i will find your videos as helpful as this was
@user-tm1ix7xi1n7 жыл бұрын
If you can make a video of time complexity, it would be helpful. Thank You.
@rabia11basri213 жыл бұрын
Yes plz😊
@muhammadmuhammadsuleiman76735 жыл бұрын
We are really getting updated thru your help, pls sir, send me the linked list codes for single, double and circular linked list
@b345_padmadevmishra46 жыл бұрын
please explain Insert/delete node at beginning/rear of circular singly linked list
@rishitasingh39556 жыл бұрын
Thanx for makig my dsa soo easy ...... could u please explain algos on circular doubly linked list
@Mhmdshoeb7 жыл бұрын
You Are Doing a Great Work, If u Explain The Time and Space Complexity of Those Algorithms at the end of Your Videos, Then that would be an added advantage, and It will be Appreciated.
out of curiosity , in the delete node procedure, is it really necessary to have two different types of loops ? One for deleting in the middle versus one for deleting at the end. It seems that only one type of loop is required. would this not work for a java implementation: @Override public boolean deleteANode(T data) { Objects.requireNonNull(data); if ( head == null ) { return false; } /** get the head pointer position first out of the way **/ if ( data.equals(head.getData())) { return deleteHeadNode(); } Node ptr = head; while ( ptr != null ){ if ( ptr.getData().equals(data)) { /** * we want to delete this node:D * a -- D -- b * D -- a -- b * a -- c -- D */ Node ptrNext = ptr.getNext(); Node ptrPrior= ptr.getPrevious(); ptrPrior.setNext(ptrNext); if ( ptrNext != null ) { /** it was the last node in the list **/ ptrNext.setPrevious(ptrPrior); } cntr--; return true; } ptr = ptr.getNext(); } return false; }
@crosshood213710 ай бұрын
we need the circular linked lists too
@poojarajgowda79676 жыл бұрын
Thank you very much sir, it is really helpful for us
@ahitch36814 жыл бұрын
Could you please tell me how to detect these three scenarios in one remove method for an iterator? My first instinct was to check if the previous is null and then that would mean you are at the first, however Java will not let me use that as an option because I am dealing with objects.
@TakumiSoldier4 жыл бұрын
Very helpful, thank you very much!
@rahmahayuningastuti82643 жыл бұрын
Thank you very much, sir!
@shaikahamad77647 жыл бұрын
Nice teaching sir
@williamjava7 жыл бұрын
Excellent!!! Thanks so much professor!
@vaibhavgarg73456 жыл бұрын
it was good thankyou sir easily samaj me a gya
@crenshaw00245 жыл бұрын
we need to delete the store_next and store_prev pointers along with p correct? I just see you deleting P. Thanks
@JossinJax4 жыл бұрын
For deleting a link in the middle, why can't we just use one link and use link.prev to point to the p.prev and link.next to point to p.next instead of using to pointers?
@anhhaopham79193 жыл бұрын
thank you so much teacher !
@andreimitrasca78155 жыл бұрын
Thanks a lot for these explanations!! :)
@zelekethomas30286 жыл бұрын
u are amazing man carry on!
@kashfulhudha72427 жыл бұрын
Thanx... it was really very helpful
@vivekanandkhyade7 жыл бұрын
Thanks Kashf..!
@adrita_chatterji6 жыл бұрын
How can you compare a pointer type variable p with an integer type variable delete_position???
@shubhammorankar27406 жыл бұрын
sir can you please upload the video on circular linked list insert at start , middle , and end ?
@yalinichandramohan52606 жыл бұрын
ir can you please upload the video on circular linked list insert at start , middle , and end ?
@antragupta10017 жыл бұрын
plz make a vedio on asymptotic notation ....
@palakmehta04276 жыл бұрын
Plzz give a video of circular linked list algorithm.......
@rajeshkothapalli84156 жыл бұрын
Algorithm to delete a node with given item of information in a single linked list
@gorledivya64513 жыл бұрын
Sir in double linked list the last node is not empty ,why u should mention it is null
@juliakolbe511 Жыл бұрын
thank you my man
@amankhare31154 жыл бұрын
which language is used in the program you are explaining ???
@dipalikatkarvlogs31584 жыл бұрын
Thanks sir
@amankhare31154 жыл бұрын
which language is he using in the program ?
@mrityunjaymishra24905 жыл бұрын
would u please make a video on xor doubly linked list?
@vipingautam98525 жыл бұрын
No need of creating store pointer can be done this way p->next->prev = p->prev; p->prev->next = p->next; delete(p);
@holyshit9225 жыл бұрын
you are right but you should wrap these instructions with if then else
@stonecoldcold29416 жыл бұрын
Thanks a lot sir
@deyavasdisen52065 жыл бұрын
Sir can you please explain data structure using java.
@varshar64746 жыл бұрын
do search prgrm fr doubly link list
@debebewogderese87125 жыл бұрын
any video related with the application of Linked List
@asifnaveed48007 жыл бұрын
thank you very mush sir i visit your website do not meet the doubly linked list code please tell to me.thanks
@vivekanandkhyade7 жыл бұрын
I will check it Asif and update the code on the link.
@mindbodyps4 жыл бұрын
Thank you sir
@amruthavani62315 жыл бұрын
Sir please update single and double circular linked list
@michael.11014 жыл бұрын
what a legend
@shahsaudkhan22137 жыл бұрын
write an algorithm to delete node from doubly linked list
@vivekanandkhyade7 жыл бұрын
will soon upload..!
@y.srinivas42317 жыл бұрын
I am not getting code for double linked listj
@shalini13vlogs7 жыл бұрын
Great video
@ramromex34246 жыл бұрын
Thanks DUDE!
@infiniteunconditionallove16207 жыл бұрын
thank you very nice
@poojadeepthi93817 жыл бұрын
c program cheppagalara continuous ga
@asifrahman34897 жыл бұрын
thnx a lot bro
@ABHAYKUMAR-fr8lm6 жыл бұрын
Thanx sir g
@jitenchoudhary62726 жыл бұрын
👏 👏
@danielwakaba98657 жыл бұрын
Thanks.
@vivekanandkhyade7 жыл бұрын
Thanks Daniel..!
@muhammadbilalhafeez8325 жыл бұрын
o bahi white board sa pichay hut ka samjhaya karo
@kurianbenoy93697 жыл бұрын
You are not facing audience, I just see your back 90% of time
@shreyparekh72786 жыл бұрын
Very bad and short trick explanations that might not help you!!
@JossinJax4 жыл бұрын
For deleting a link in the middle, why can't we just use one link and use link.prev to point to the p.prev and link.next to point to p.next instead of using to pointers?
@JossinJax4 жыл бұрын
For deleting a link in the middle, why can't we just use one link and use link.prev to point to the p.prev and link.next to point to p.next instead of using to pointers?
@JossinJax4 жыл бұрын
For deleting a link in the middle, why can't we just use one link and use link.prev to point to the p.prev and link.next to point to p.next instead of using to pointers?