I get fully absorbed in learning because of your teaching and forget to like the video always🤣
@miroslavdanilov9023 жыл бұрын
This is by far the best explanation of BST node deletion on KZbin.
@uriaheric15653 жыл бұрын
you prolly dont give a damn but does anyone know of a method to log back into an instagram account? I was stupid forgot my password. I would love any tips you can give me
@angelokaiden71963 жыл бұрын
@Uriah Eric instablaster :)
@uriaheric15653 жыл бұрын
@Angelo Kaiden i really appreciate your reply. I got to the site through google and im in the hacking process atm. I see it takes quite some time so I will get back to you later when my account password hopefully is recovered.
@uriaheric15653 жыл бұрын
@Angelo Kaiden it worked and I finally got access to my account again. I'm so happy! Thanks so much you saved my account!
@angelokaiden71963 жыл бұрын
@Uriah Eric Glad I could help :D
@shubhamjain1316 Жыл бұрын
You are greatest Amulya ma’am
@kancharakuntlavineethreddy93203 жыл бұрын
Ma'am If we try to delete an element that is not present, it's automatically deleting some other element(Preorder was not the same as Initial). I tried to debug the code. And it's working when we "return self" in else part. if data < self.key: if self.lchild: self.lchild = self.lchild.delete(data) else: print("given node is not present in the tree") return self elif data > self.key: if self.rchild: self.rchild = self.rchild.delete(data) else: print("given node is not present in the tree") return self Just wanted to share with the community:)
@LlanzKennethLuy11 ай бұрын
You can try this: if data < self.key and not self.lchild or data > self.key and not self.rchild: print('delete_node():', data, 'was not found') return if data < self.key: self.lchild = self.lchild.delete(data) return self if data > self.key: self.rchild = self.rchild.delete(data) return self
@nayankamthe67343 жыл бұрын
please create placment coding series. it will help us very much.
@ramyakotike85 Жыл бұрын
Mam, can you please provide a video to count no of leaf nodes in BST?
@pindropnonsense67463 жыл бұрын
Mam can you explain last “return self “ statement like my pre order is 10 ,1,2,12,15,25 if I deleting 15 without add return self statement it give me pre order 10,1,2 but actual is 10,1,2,12,25 so please explain me how it work.
@smarty420ful3 жыл бұрын
return self is explained in next video
@aswath82653 жыл бұрын
Really amazing
@AmulsAcademy3 жыл бұрын
Thank you 😊
@shankhadeepghosh6086 Жыл бұрын
Mam, some confusion in when delete 1 child node .. You wrote self.rchild is none it's means .. In a example in your tree the last rchild is 500 then if we writen temp = self.lchild then how it's store 500 in a temp ?? Please clear my doubt 🙏🏻🙏🏻🙏🏻
@saranyav52443 жыл бұрын
Mam,pllz upload how to install c c++java python on windows 7...and how transfer the data from cd to system and syst to cd ....plzzzz upload
@iNeFFaBLeSaPiEN Жыл бұрын
thanks
@aasthapant5 ай бұрын
what should be the code if we want to replace 50 with 70?, cause i dont think it will be the same
@wagishasingh_22033 жыл бұрын
Ma'am plz upload the remaining videos ASAP
@AmulsAcademy3 жыл бұрын
Sure 😊
@anythingit23993 жыл бұрын
@@AmulsAcademy Ma'am, I am done with 72/72 videos, are there any video left? Also, please solve problems from Leet Code Ma'am, it will really help
@saranyav52443 жыл бұрын
Teach about applet program in java mam plz
@AmulsAcademy3 жыл бұрын
Will try 😊
@dineshyadav94573 жыл бұрын
thank you ma'm
@AmulsAcademy3 жыл бұрын
Pleasure 😊
@rraviteja24603 жыл бұрын
Mam level order is possible or not
@junior_tee53203 жыл бұрын
Is there a video on creating a program with menu's?
@AmulsAcademy3 жыл бұрын
No 😊
@snr-u6h3 жыл бұрын
Thank u mam😁😁😁
@AmulsAcademy3 жыл бұрын
Pleasure 😊
@selvanm28723 жыл бұрын
nice
@AmulsAcademy3 жыл бұрын
Thank you 😊
@saranyav52443 жыл бұрын
Plz teach about hardware parts mam
@AmulsAcademy3 жыл бұрын
Will try 😊
@venkateshkoneti21162 жыл бұрын
madam, What about the repeated elements?
@shashidhardevraj Жыл бұрын
duplicates are not getting inserted as shown in the previous video series
@naveenchebolu67573 жыл бұрын
Plz upload same for Java programming also from basics
@omalie7453 жыл бұрын
Apply the same logic. You don't pay her.
@shreehari25892 жыл бұрын
@@omalie745 nice reply 👌🏻
@tejasrees2797 Жыл бұрын
Can u please say level order traversing code
@venkateshwar96413 жыл бұрын
Why we are returning self at the last step?
@AmulsAcademy3 жыл бұрын
Check out the next video, in that I explained this method with example 😊
@zainabbohra29153 жыл бұрын
mam what about root node not getting ?
@zainabbohra29153 жыл бұрын
someone please help me
@AmulsAcademy3 жыл бұрын
Check the next video {how to delete root node}
@zainabbohra29153 жыл бұрын
@@AmulsAcademy mam will you please 2 and 3 programs on recursion ,how calling is happening all that one by one ,basic recursion ,and yes mam old videos of recursion i had seen ,but i am little bit confusion it ,so please mam will you upload more videos on recursion ,
@AmulsAcademy3 жыл бұрын
I will a make a video on that 😊
@mamo1003 жыл бұрын
That is a WRONG binary search tree, because 500 can not be the right child of 300. You can see the BST in 07:00
@codeitoff43342 жыл бұрын
it can be..its >300
@aswinks2 жыл бұрын
its correct
@sinbad2597 Жыл бұрын
U wrong 🗿
@donhjoe21622 жыл бұрын
Are you a children or a girl? Thank for your help.