Bro you are better than my personal paid teacher....... I think you need to be an professor....... I can't believe your teaching those things for free.... Hats off
@SimpleSnippets4 жыл бұрын
Wow, thanks. Glad to hear this from you. And yes I am trying my best to teach all these fundamental subjects for free because I feel everyone should get access to such knowledge for free.
@preetishamballi69883 жыл бұрын
Hello Tanmay, appreciate your efforts on creating this playlist. request you to look into memory leak of the complete program of binary search tree. You have kept it real simple to understand but at the same time keeping it correct matters as this is C++.
@ramizzaheer72384 жыл бұрын
Your videos are a life saver, i'm really hoping for videos related to graph, Btree and complete Avl tree as it's in my course :(
@SimpleSnippets4 жыл бұрын
Will cover them soon!
@flowing_dance3 жыл бұрын
Excellent Explanation!
@fatossm3 ай бұрын
harika anlatıyorsunuz, çok teşekkürler. Türkiye'den Selamlar!
@abhimanyu65344 жыл бұрын
Plzz complete this course as soon as possible 🙏🙏🙏🙏🙏🙏🙏🙏🙏
@sakurapandu88602 жыл бұрын
Thank you, this video cleared alot of things
@SimpleSnippets2 жыл бұрын
I'm glad this video helped😊👍
@MistrYouTuber4 жыл бұрын
Bro...my DSA course is totally based on u...i have cleared most of topics from u... Plz increase your upload speed otherwise i will not get good gpa 😥
@nileshtoshniwal90464 жыл бұрын
Please cover them as soon as possible pls 😍😍
@cpwithsundar3 жыл бұрын
Sir, Great video. May I know whether are you still studying or where do you work sir?
@nileshtoshniwal90464 жыл бұрын
Sir when you are going to upload next vedio? 🙏🙏 We are hardly waiting for the Red black trees vedio 🙈🙈
@shaharrefaelshoshany94423 жыл бұрын
best ever
@AiminglowNAccpble4 жыл бұрын
Any idea sir how long it will go?
@SimpleSnippets4 жыл бұрын
Nope this seems like a never ending subject to me 😅
@aniketdhiman4 жыл бұрын
Waiting.....
@vijayalaxmiise15043 жыл бұрын
Thank You sir
@DebashisDGiri4 жыл бұрын
Sir how many more videos to come in this playlist??
@SimpleSnippets4 жыл бұрын
There is no limit yet.
@praveens76984 жыл бұрын
Good concept sir But too slow of uploading videos.People can't wait they will watch on another channel.Just suggestion
@SimpleSnippets4 жыл бұрын
Thanks Praveen. Actually I myself encourage people to not wait on my videos and watch other channels and sources. Because these videos take a lot of time to make and unfortunately I cannot do much about it as I handle the entire process alone. 😇
@devmahad2 жыл бұрын
18:23 (For my notes)
@gamsterilyass29524 ай бұрын
the goat
@gauravjaiswal74073 жыл бұрын
WOW!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@nizarmejri94783 жыл бұрын
Respect
@susmitsingh17753 жыл бұрын
//I came up with a similar implementation Node* insert_rec (Node* root , Node *n) { if (root == NULL) return root; else if (root->data > n->data && root->left == NULL) return root; else if (root->data < n->data && root->right == NULL) return root; else if (root->data > n->data && root->left != NULL) insert_rec (root->left , n); else insert_rec (root->right , n); } //if NULL is returned manually assign the tree root to new_node