you taught this most easiest way that even at Uni they will not break down such way with the best professors!
@error-my9ut3 жыл бұрын
Thank you very much, I have been trying to visualise this for too long but didn't got any channel who explained it with so much efficiency
@pkavenger99902 жыл бұрын
your channel is so underrated. The way you are explaining things are very good.
@deepakps44863 жыл бұрын
Thank you madam, you not only teach us, but also gives confidence
@AmulsAcademy3 жыл бұрын
Glad to hear that 😊❤️
@Mlbbmontage1312 жыл бұрын
Best explanation for data structure algorithms on youtube. Thank You so much!
@willywonka71663 жыл бұрын
You know the chemistry of computer science and how to explain it well! The underrated KZbin/ Mentor❤️❤️
@AmulsAcademy3 жыл бұрын
Thank you 😊
@brennanshepherd6523 жыл бұрын
you prolly dont care at all but does someone know of a trick to log back into an Instagram account? I was stupid forgot my login password. I appreciate any tricks you can offer me!
@fazlurrahman58093 жыл бұрын
My first comment very nice video vice nice ma'am make more videos we are watiing your videos think you.
@AmulsAcademy3 жыл бұрын
Thank you :)
@fazlurrahman58093 жыл бұрын
@@AmulsAcademy Welcome
@Gnaneshh3 жыл бұрын
Amazing Explanation! Please keep making many such videos.
@AmulsAcademy3 жыл бұрын
Thank you 😊
@nageshmhetre60183 жыл бұрын
Explained very well... Now I think data structure using python is not that difficult... Thank you...
@AmulsAcademy3 жыл бұрын
Thank you so much :)
@mitheshpatel6806 Жыл бұрын
Just curious to know fabulous person behind such incredible content.....
@M.Ramakrishna16076 ай бұрын
This really helped me a lot, thankyou for creating such great content :) It'd also be great if you explain multiple problems like the ones on leetcode, codeforces, etc
@kishorekumars65443 жыл бұрын
Very Clear Explanation.....I never seen
@passionateengineer....6762 жыл бұрын
mam it is a great explanation....Thank you so much mam......
@becr77942 жыл бұрын
Thanks alot mam Respect from Nepal
@r.t.s.7492 жыл бұрын
Please make videos on DSA. one of the best teacher
@umarabdullah16973 жыл бұрын
Best explanation , Thanks a lot
@AmulsAcademy3 жыл бұрын
Pleasure 😊
@ComputerScienceSimplified3 жыл бұрын
Awesome video, keep up the incredible work! :)
@AmulsAcademy3 жыл бұрын
Thank you :)
@maruthiprasad81842 жыл бұрын
superb. Thanks for clear explanation.
@mayurpashadhanegave14923 жыл бұрын
Thanks Amulya mam🙏
@AmulsAcademy3 жыл бұрын
Pleasure :)
@helloworldcsofficial5 ай бұрын
Great explanation. By the way, I am unable to add some of your videos, including this one, into my playlist. Is there a way you can enable that feature for your videos? This makes it easier to find them in the future. Thanks!
@MameBoussoDiakhate-b1e10 ай бұрын
you are the best
@ObserverGuy3 жыл бұрын
Excellent 🤩
@AmulsAcademy3 жыл бұрын
Thank you 😊
@ParashuRam-r4j Жыл бұрын
one of the easy way to get into the ooops concept using the binary treeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
@CBI_0966 Жыл бұрын
Yessss❤❤❤❤❤
@selvanm28723 жыл бұрын
thank you amulya
@AmulsAcademy3 жыл бұрын
Pleasure :)
@darkxxslayer21093 жыл бұрын
very good explanation thank u
@AmulsAcademy3 жыл бұрын
Pleasure :)
@umairbijapure75843 жыл бұрын
It was Great ..
@AmulsAcademy3 жыл бұрын
Thank you 😊
@universal43343 жыл бұрын
Please do videos daily on DSA with python
@AmulsAcademy3 жыл бұрын
I will try :)
@ayyappareddy44613 жыл бұрын
thanks madam well explained
@darkxxslayer21093 жыл бұрын
mam pls make a video of insertion in bst in which the bst class is separated with new node class like we did it in linked list.
@AmulsAcademy3 жыл бұрын
I will try :)
@venkatareddykasireddy7593 жыл бұрын
Thank you so much 😊
@AmulsAcademy3 жыл бұрын
Pleasure :)
@medasaihavish4609 Жыл бұрын
can you make a video on implementation of min and max heap in python by writing program
@rogerthat7190 Жыл бұрын
Thank you so much
@akhilpadmanaban32422 жыл бұрын
Hello mam, Adding the self.leftNode.insert(data) shows Nonetype object has no attribute insert, error!!!
@inzamam4833 жыл бұрын
can you plz attach the code in the video description? That will be very helpful for us.
@AmulsAcademy3 жыл бұрын
Noted 😊
@bishtman123 жыл бұрын
why not take another parameter which is pointing towards its parent node??
@himanshubobade3 жыл бұрын
Where is the next video ma'am? I need the video asap.. pls upload it
@himanshubobade3 жыл бұрын
Ma'am pls upload the next video
@AmulsAcademy3 жыл бұрын
Sorry for the delay :)
@himanshubobade3 жыл бұрын
@@AmulsAcademy no problem ma'am.. thankyou so much for your efforts🙏
@mahendrachaganti37363 жыл бұрын
If self. Key is none self. Key==BST(data) return We need to use BST right, in 1st step
@SaurabhjiEngineer3 жыл бұрын
class node: def __init__(self,data): self.data=data self.left=None self.right=None class bst: def __init__(self): self.head=None def search(self,x): if(self.head==None): print("trees are empty") else: n=self.head while(n is not None): if(n.data==x): break if(x>n.data): n=n.right else: n=n.left if(n is None): print("no such node with given data") else: print('yes ,this data is in Tree') def formation(self,*a): for i in range(len(a)): x=a[i] if(self.head==None): self.head=node(x) else: n=self.head while(True): if(n.data==x): print("duplicaion is not alloed") break elif(x>n.data): if(n.right==None): n.right=node(x) break else: n=n.right else: if(n.left==None): n.left=node(x) break else: n=n.left def deleation(self,x): bst1=bst() Can we do it like that with no confusion.
@AmulsAcademy3 жыл бұрын
If it is working then why not 😊
@codewithchandan61462 жыл бұрын
nice
@settyruthvik62363 жыл бұрын
explain printing tree function also mam
@vishantjain70613 жыл бұрын
Thanks mam
@AmulsAcademy3 жыл бұрын
Pleasure :)
@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 return if self.key==data: return 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) root=BST(10) list1=[20,4,30,4] for i in list1: root.insert(i)
@76Ananya2 жыл бұрын
How to print that binary tree??
@vrindavaneshwari_ju_ki_kripa3 жыл бұрын
ty dear
@rishabhgoyal56343 жыл бұрын
please make graph also
@AmulsAcademy3 жыл бұрын
Will upload the video soon 😊
@umamaheshwararaomerugumill82442 жыл бұрын
I have some doutes don't they have links
@RiteshNEVERUNIFORM3 жыл бұрын
Your voice is like of a teen, are you a college student or Teacher? Tutorials are real helpful btw.
@AmulsAcademy3 жыл бұрын
Thank you :)
@Shanky_173 жыл бұрын
i bet she is teacher !
@sk-sm5zg2 жыл бұрын
Please share the code
@kguruprasad6670 Жыл бұрын
Mam source code plz
@jaiminjariwala52 жыл бұрын
almost every tutorials are good, but in this tutorial, you are confused that to move on which point first for explaining! My just suggestions to uh is... just hold a single condition and explain that properly instead of jumping from 1 condition to other!