Videos like these makes me just want to stop my adblock just so that the creator of the video make money. Thank you for the video.
@melihaslan95094 жыл бұрын
this problem cannot be explained better than this!! excellent solution.. especially for beginners... wow
@ronylpatil3 жыл бұрын
U have explained each and every steps in very very efficient way even a 6th std. student can also understand this.
@dinosaurx68516 жыл бұрын
The best explain i have seen. Thanks sir
@boyapatinagendra20896 жыл бұрын
segmentation fault is due to pop(). pop() returns void so getting segmentation fault. So take top element from stack and assign it to p and print the value rest continue
@meleearcher76845 жыл бұрын
I agree and after print it needs to be popped
@gabrielpaschoal9385 жыл бұрын
Ajudou um brasileiro, obrigado. Helped a Brazilian, thank you.
@ming8201234 жыл бұрын
thank you for recording these videos
@KrishnaPandeyURL4 жыл бұрын
Awesome Vivekanand...
@haseen53 жыл бұрын
Very nice explanation, I wrote the code it worked perfectly thanks 👍
@shrabanakumar77544 жыл бұрын
Sir your videos are really awesome
@ganeshjaggineni40976 ай бұрын
NICE SUPER EXCELLENT MOTIVATED
@amitagarwal95726 жыл бұрын
Thanks for sharing the videos, I found Inorder and preorder iterative traversal videos but not Post order traversal, could you please upload post order iterative video as well.
@gopaldas79056 жыл бұрын
you are the best teacher ....sir please upload video on graph coloring problem algorithm....
@ShubhamKumar-uf7yk Жыл бұрын
Thank you so much
@fardilviews4 жыл бұрын
hard-working video ,,,, thanks a lot
@ahmedouyahya4 жыл бұрын
you are awesome.
@praveenchouhan63884 жыл бұрын
awesome video, thanks a lot!!!
@gaganalokesh1946 Жыл бұрын
Take a bow💓🙏
@pratapsingh-le2br5 жыл бұрын
Love u Sir No word speechless ur all data structure session but is it possible after explaining the concept to run all the code on ur laptop then very helpful to the every one who is watched ur channel ? Interview Prospective
@cherifachi46555 жыл бұрын
Thank you sir , for this clear explanation
@DiasDenny4 жыл бұрын
Thanks I liked your video
@knightganesh6 жыл бұрын
Hi Kindly organize your videos into appropriate playlists, it would be easy for us to find them and go through the similar topics in the playlist and complete the learning in a more organized way ... Many thanks you rock
@Antriksh10006 жыл бұрын
I think he is doing that
@vinayak186f33 жыл бұрын
Explanation is great , but would have been more useful had the intuition been discussed
@alperklc77825 жыл бұрын
thank you for help :)
@vinit__rai6 жыл бұрын
Nice sir, but may I get video on java??
@huyenminh26313 жыл бұрын
from VietNam thanks u
@SOURABHGOLCHHABCE6 жыл бұрын
sir very good videos your videos are really awesome sir but you are saying that you upload videos everyday but it is not so sir try to upload the video everyday as it will be benificial for both of us thank u sir ???
@alperklc77825 жыл бұрын
def travers(self): stack = [] current = self.root while True: while current: stack.append(current) current = current.left if stack: current = stack.pop(0) print(current) current = current.right print(stack) if stack is None: break First of all, thanks for the lessons. Unfortunately, the cycle does not end. Debug 'if stack is None: break ' code is bypasses. Although the stack is empty, it does not end the cycle. I wonder why. Thank you . respects