This is a very high quality playlist to learn Data structures in python!!!!!!!!!! superb👏👏👏
@bakhitmahamat73594 жыл бұрын
I don’t know how much to thank you Ma’am. I was struggling before to understand DSA but r now with your well detailed explanation, I’m catching up. You’re the best! 😂😂 You’ve got also a fantastic voice😂😂.
@AmulsAcademy4 жыл бұрын
Glad to hear that :)
@jaheerkalanthar8164 жыл бұрын
Your voice so cute Sister,It is like some Melody, Im a beginner of Python i trying to understand Data Structure,Most of other Tutorials They teach for advanced students,You only teach the Data Structure for Begginner we Love You Teaching Sister Keep Going
@AmulsAcademy4 жыл бұрын
Thank you so much :)
@saradaprasad95943 жыл бұрын
I like the way you teach even I'm able to understand these concepts, initially i thought it would be difficult for me but now i'm able to understand DS thank you
@hustlersadda1 Жыл бұрын
Thank you🥺❤ I can't find better explanation then this. Keep educating us.
@prateektiwari41163 жыл бұрын
U r osmm🙏🙏🙏🙏💘 really i tried to understand from many channels but stills didn't understand anything but u made it simple for me..... 💗💗💗
@AmulsAcademy3 жыл бұрын
Thank you so much 😀
@rahulsolanki55353 жыл бұрын
Wonder woman of DSA love your voice and explanation.
@anuragchandra78503 жыл бұрын
It is impossible to explain better than this❤️❤️❤️
@AmulsAcademy3 жыл бұрын
Thank you 😊❤️
@keerthanaselvanathan45103 жыл бұрын
you are really great mam and your voice too...... The way you are explaining is great, clear..!!!!! I feel very happy after watching your video. Thank you so much mam. Do continue!!.Its my hearty request.
@AmulsAcademy3 жыл бұрын
Thank you 😊❤️
@dewangpatil49903 жыл бұрын
Thank you sooooo much, ma'am. If you wasn't there my ds was not going to get started
@AmulsAcademy3 жыл бұрын
Pleasure 😊❤️
@snehaa56824 жыл бұрын
Mam.. 🤩 really u explained well, u teach from basic, keep it up mam
@AmulsAcademy4 жыл бұрын
Thanks a lot 😊
@cineclassicshub2 жыл бұрын
while True: print("❤❤❤❤❤East or West Amulya ma'am is the best!❤❤❤❤❤")
@snex-techprogrammer51102 жыл бұрын
Top notch level of explanation....Thanks for this great content for free
@vishaljagale63423 жыл бұрын
Great Conceptual Learning in an easy Manner. Thankyou so much Mam.
@vamsinadh1003 жыл бұрын
def insert_before(self,data,x): n = self.head while n.next.data!=x: n = n.next if n.next==None: print(x,"is not in the list") return self.insert_after(data,n.data) This code works for inserting data before an element.simple!
@TinytotsWorld162 жыл бұрын
Y return is given ?
@keshav97592 жыл бұрын
Thankyou mam You cleared me the concepts which no'one could.
@TarunKumar-hv6jk Жыл бұрын
Where can i practice DS problems from basic
@abhishekchakraborty152 жыл бұрын
You are the best !
@shuaibsaqib50852 жыл бұрын
very awesome explanation......Thank You
@svsc729 Жыл бұрын
Excellent tutorial mam. Small suggestion: Would it be possible to maintain a Git repo for all your code and paste the link to it here.
@revanth_richards5 ай бұрын
can you cover the advanced topics..??
@pini5076 Жыл бұрын
Thank you so much!
@ghemanthkumar81834 жыл бұрын
Thank you mam 😊 Ur teaching is best than our lectures, as I'm a beginner, I'm trying to improve my logics but I don't know what to do ? Can u give any suggestions from ur side mam?
@AmulsAcademy4 жыл бұрын
Thank you :) Practice programs try to write your own version of program for a problem :)
@sm-df6ft3 жыл бұрын
Explaination is too good I really understand the concept but ,i have a question do we need to create node class and linkedlist class for head on every time for evy operation of linked list like reverse or find middle element
@AmulsAcademy3 жыл бұрын
No while adding new nodes you need to create new node for that you need to use Node class :)
@sm-df6ft3 жыл бұрын
@@AmulsAcademy thanks maam
@Kavya-d8l5 ай бұрын
Can you clarify me the difference between 'while n is None' and 'while n.ref is None' . How these two conditions works in different way!
@prachi74143 жыл бұрын
I have a doubt that why u used return in second if block in add_before method???
@AmulsAcademy3 жыл бұрын
If the condition of if block is true , after executing its body I want to stop the execution of the function 😊
@prachi74143 жыл бұрын
@@AmulsAcademy thankyou!!!! Much
@sktanweerrahaman98963 жыл бұрын
Can't we call directly the add_begin fn inside the add_before instead of copying the code from it?
@AmulsAcademy3 жыл бұрын
Yes you can 😊
@sktanweerrahaman98963 жыл бұрын
Ok mam..thanks..your teaching is awesome
@AmulsAcademy3 жыл бұрын
❤️
@bablumishra97894 жыл бұрын
Hi amulya, Thanks for the wonderful session on adding element before a NODE. But as I am executing the code provided by you its showing an Error as " Linked list object has no attribute head".
@AmulsAcademy4 жыл бұрын
In the Linked List class you need initialise head ... Watch the video completely :)
@chilakaprasanthkumar1770 Жыл бұрын
@@AmulsAcademy 🤣😂
@Unknownthewiu Жыл бұрын
Anyone explain? Why I can't use while n is not None , but n.ref? Can't I just use while n is not None and if n is None?
@DACS_NARESHKUMARP3 жыл бұрын
At the condition first node ==x Why didn't you used n instead u used self. Head Iam not getting answer for using n
@AmulsAcademy3 жыл бұрын
I am referring first node and we can access first node data using self.head.data also. if you want you can use n also. :)
@makeyoulaugh56163 жыл бұрын
Please recommend me a book for dsa using python
@AliKhan-rr6kz3 жыл бұрын
while n.ref is not None: if n.ref.data ==x: new_node.ref = n.ref n.ref=new_node break n=n.ref why we need to add break in the loop here,if i remove break while loop is running continuously .i dont get it, loop should end after the last node right? where last node ref is none then loops terminates.can anyone help plz.
@chaitanyakrishna93983 жыл бұрын
At time stamp 6:03 Cant, we call the add_begin function in add_after function when x is the head data instead of copying the code again. I tried this but showed an error so please explain how to call a method in another method of the same class in python.
@AmulsAcademy3 жыл бұрын
Try self.method name :)
@Biswajit_Pradhan2 жыл бұрын
mam don't know why but code is showing run time error def add_before(self,data,x): if self.head is None: print(" Linked List is empty") return if self.head.data==x: new_node=Node(data) new_node.ref=self.head self.head=new_node print(" Node inserted successfully ") return n=self.head while n.ref is not None: if n.ref.data==x: break n=n.ref if n.ref is None: print("Node is not present in the Linked List") else: new_node=Node(data) new_node.ref=n.ref n.ref=new_node print(" Node inserted successfully ") return this is my code..and while I am trying to insert a node at the starting position it is showing that "Node is not present in the Linked List" . Please help me on this
@iNeFFaBLeSaPiEN Жыл бұрын
600th like
@amarnathr23483 жыл бұрын
Please provide notes mam WE CAN REFER
@AmulsAcademy3 жыл бұрын
I will try :)
@selvanm28724 жыл бұрын
👍
@AmulsAcademy4 жыл бұрын
Thank you :)
@saikrishnacherala25192 жыл бұрын
if any one has wrote this data structrures notes or anybody has all the notes written.. if Yes please send me
@tharuntharak25482 жыл бұрын
It's not inserting the element before the given node(x). It is inserting only if the x value equals to the first node. Please help me Ma'am. I have written the same code as you.🥲
@hustlersadda1 Жыл бұрын
You pasted the another else: Just watch the video and write as ma'am has written. I'm telling you because this happens with me also. Don't worry just write as ma'am did 😊