This channel is very underrated. I was struglling a lot on this concept , but after watching ur lctre it is becoming clear to me. Than u so much mam
@AmulsAcademy3 жыл бұрын
Thank you 😊
@aasthapant7 ай бұрын
every concept is readily explained, the only python ds channel i can trust and understand
@mitheshpatel6806 Жыл бұрын
guys instead of the 2nd if statemnet use elif , it will work ....Thanks alot amu maam
@baherualemu71292 жыл бұрын
you are my 1st choice in youtube !!!!!thank you Amu !!!!
@sivasrimakurthi2066 ай бұрын
@amulya - your style of tracing the flow of program/control is EXCELLENT, feels like computer is tracing the instructions !! simply like your way of teaching Data Structures !!😊
@snex-techprogrammer51102 жыл бұрын
Excellent level of teaching...This channel is underrated.
@belalahmad66143 жыл бұрын
Love your explanations. i struggle with this data structure, but i know you explained it better than my lecturer.
@AmulsAcademy3 жыл бұрын
Thank you 😊
@abhishekanand96792 жыл бұрын
Thanks a lot yarr, actually searching for DSA in python for long time but didnt got any video as that much easy as u taught in your video.
@suchitranagarajan77153 жыл бұрын
Thank you so much for explaining so beautifully.....the concepts are now clear by seeing your videos...I prepare for interview watching your videos...Please upload more videos on data structures various concepts if you have time....It would help us a lot.
@Brian-vz5et3 жыл бұрын
Fantastic teaching ability! Even explain recursion well! Great video!
@AmulsAcademy3 жыл бұрын
Thank you 😊
@mushrafbehlim9546 Жыл бұрын
ma'am superb you are explaining BST
@mohinijoshi14022 жыл бұрын
thanks mam, you explained very well
@changkris28443 жыл бұрын
very helpful,love you
@AmulsAcademy3 жыл бұрын
Thank you 😊
@niteshasale64003 жыл бұрын
thank you so much easy to understand every concept.... plz tell me which IDE use to you.....
@daphnecheung10263 жыл бұрын
THank you! very easy to follow
@black_eye71053 жыл бұрын
Thanks a lot 🌹.try to complete all the data structure concepts in python
@AmulsAcademy3 жыл бұрын
Sure :)
@prathameshmore52622 жыл бұрын
Good tutorial on BST thanks
@subbuk53473 жыл бұрын
I think we have to add one more case that "If tree is empty" ?
@AmulsAcademy3 жыл бұрын
Yeah.. you can add 😊
@Redvelvet-gv1tv3 жыл бұрын
hello i love your explanation, it is very understandable but only problem for me if execute the program it shows BST object has no attribute 'search'
@AtifImamAatuif3 жыл бұрын
You are the best . :)
@AmulsAcademy3 жыл бұрын
Thank you 😊
@vijays-rd8uc3 жыл бұрын
Thank you for your service akka
@srinivassathya50982 жыл бұрын
Can we right as If self.lchild is not None: it also suggest the same operation no ma'am can clarify please And thankyou soo much for ur nice explanation
@birkaransingh82073 жыл бұрын
Ma'am what if we also have to return the reference to the Node founded? Should I change something in return statement?
@BCS-zt6eo2 жыл бұрын
LOTS OF LOVE
@vishantjain70613 жыл бұрын
Thanks a lot mam 🙏🏽
@AmulsAcademy3 жыл бұрын
Pleasure :)
@vishantjain70613 жыл бұрын
Mam plz upload video on python interview question
@AmulsAcademy3 жыл бұрын
I will try :)
@darkxxslayer21093 жыл бұрын
Thanks mam pls upload deletion of node next plsss...
@AmulsAcademy3 жыл бұрын
Traversal after that deletion :)
@lohith94712 жыл бұрын
hello mam, it would be great if you can look into this bug mam. I'm not sure what I'm missing here. def search(self,key): if self.data == None: print("tree is empty") if self.data == key: print("data found") print(self.data,"",key) return self.data if key self.data: if self.right: self.right.search(key) else: print("data not found") search_res = root.search(876) print("result is",search_res) in this code I'm unable to return the self.data value. search_res always prints the value "None" irrespective of data present or not.
@ayyappareddy44613 жыл бұрын
thank you mam..
@inzamam4833 жыл бұрын
can you please share the code for taking the value from user.
@AmulsAcademy3 жыл бұрын
Take input from user store that in a variable then use that function call 😊
@techinnovation74572 жыл бұрын
Why didn't you check empty tree condition?
@alexikamran70393 күн бұрын
my search data shows its always found in the root, why?
@bikeshregmi9463 жыл бұрын
best
@AmulsAcademy3 жыл бұрын
Thank you 😊
@usmanakhtar9155 Жыл бұрын
code is working for first element in list only.
@selvanm28723 жыл бұрын
👍👍👍
@AmulsAcademy3 жыл бұрын
Thank you :)
@prashantnegi65223 жыл бұрын
What if tree is empty ?
@AmulsAcademy3 жыл бұрын
You can include that condition too 😊
@vasukonde79623 жыл бұрын
The code is not working 😔
@jithendra53224 ай бұрын
class BST: def __init__(self,key): self.key=key self.rchild=None self.lchild=None def insert(self,data): if self.key is None: self.key=data if self.key>data: if self.lchild: self.lchild.insert(data) else: self.lchild=BST(data) else: if self.rchild: self.rchild.insert(data) else: self.rchild=BST(data) def search(self,data): if self.key==data: print("Node is found") return if data
@maheshpulle66742 жыл бұрын
Please provide this code file in github so it's much more help full for learner's