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
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.
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++.
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. 😇
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
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.
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++.
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 :(
Will cover them soon!
harika anlatıyorsunuz, çok teşekkürler. Türkiye'den Selamlar!
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 😥
Thank you, this video cleared alot of things
I'm glad this video helped😊👍
Plzz complete this course as soon as possible 🙏🙏🙏🙏🙏🙏🙏🙏🙏
Excellent Explanation!
Please cover them as soon as possible pls 😍😍
Thank You sir
best ever
Sir when you are going to upload next vedio? 🙏🙏
We are hardly waiting for the Red black trees vedio 🙈🙈
Sir, Great video.
May I know whether are you still studying or where do you work sir?
Waiting.....
Sir how many more videos to come in this playlist??
There is no limit yet.
Any idea sir how long it will go?
Nope this seems like a never ending subject to me 😅
18:23 (For my notes)
WOW!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Good concept sir
But too slow of uploading videos.People can't wait they will watch on another channel.Just suggestion
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. 😇
the goat
Respect
//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
😇👍