Amazing teacher with clarity and zero non sense! I regret not having found your channel before!
@oneworldofstem77243 жыл бұрын
Amazing teacher!! Btw, I wonder how do you come up with these 5 steps in 2:39? I think the thinking process is what I REALLY need to learn. Thanks in advance.
@madagalaharivardhan94126 жыл бұрын
EXCELLENT and NICE ATTRACTIVE WAY OF TEACHING
@wongisa3684 жыл бұрын
very good video and it did solve my problem, thanks!
@krishankantray7 жыл бұрын
Excellent explanation......and nice voice......Thumbs up.....keep it up....
@GeeksforGeeksVideos7 жыл бұрын
Thanks, Krishankant! :)
@JamesBrodski3 жыл бұрын
Thank you so much for this amazing video.
@saisrikar79876 жыл бұрын
excellent explanation ..Thanks
@nibedita__dey4 жыл бұрын
Thank u sir it's very helpful !
@huda91265 жыл бұрын
Can you help me please to found answer for this qustion ☺️ Write a C++ program to iteratively (not recursively) insert an element in a binary tree. Required operations: a. Insert number of elements in a binary tree. Before inserting each element, make sure that it is not exist in the tree. b. Display an error message if we try to insert an element that is already exist in the tree. c. Print the inorder traversal of the tree.
@david-tracy4 жыл бұрын
Thank you. Is this faster than recursive approach?
@michaelqu67322 жыл бұрын
No. Traversal has to go through every node so both of them are bounded by O(n)
@ven77827 жыл бұрын
Thanks for the amazing video.
@poorvisaxena70553 жыл бұрын
I want to know if this playlist on trees is enough for coding interviews; along with practise of questions, of course.
@kautukraj4 жыл бұрын
Very helpful!
@jethalalnhk24094 жыл бұрын
Very good
@khaledsabri64295 жыл бұрын
amazing, thank you so much.
@arianphilips57775 жыл бұрын
excellent
@rubencristobalgarcia1857 жыл бұрын
Great videoo thanksss
@GeeksforGeeksVideos7 жыл бұрын
We're glad that you liked it. :)
@mddar956 жыл бұрын
Thanks alot man !
@GeeksforGeeksVideos6 жыл бұрын
Thanks Mohamed Darwiche :)
@jamest77004 жыл бұрын
what is the space complexity?
@ruchakhartadkar7735 жыл бұрын
helpful! thankyou!
@satyeshtripathi85334 жыл бұрын
is the worst-case space complexity of this approach O(d) where d is the depth of the tree?
@randomusername8184 жыл бұрын
yes
@matanyaasis27 жыл бұрын
memory is O(h) right?
@jayshah82717 жыл бұрын
when you will upload next video to related all question on tree?
@GeeksforGeeksVideos7 жыл бұрын
Hi Jay, We are working on it. And, you should see more video tutorials on Tree topics in the coming weeks.
@VenkateshNair7 жыл бұрын
thnks man
@GeeksforGeeksVideos7 жыл бұрын
You're welcome, Venkatesh!
@malharjajoo73937 жыл бұрын
Much easier logic - Just loop over stack until it is empty. // Example program #include #include #include using namespace std; class BinaryTree { public: BinaryTree(int val, BinaryTree* left,BinaryTree* right):val(val),left(left),right(right){} int val; BinaryTree* left; BinaryTree* right; }; void pushToStack(stack& s1, BinaryTree* root) { while(root != NULL ) { s1.push(root); root = root->left; } } void stackTraversal(stack s1,BinaryTree* root) { BinaryTree* current = root ; pushToStack(s1,root); while(!s1.empty()) { cout
@moazelsawaf20005 жыл бұрын
Thanks
@bindujesin55115 жыл бұрын
Good😍
@soumengorain28917 жыл бұрын
Tomorrow's ma xams😂😂
@GeeksforGeeksVideos7 жыл бұрын
All the best!! :)
@soumengorain28917 жыл бұрын
The xam ws grt.. thanks to Ur videos😘😘.. never njoyed reading books