Please *Like* , *Comment* , *Share* , *Subscribe* and *Click Bell* 🔔🔔🔔 Icon for More Updates. To get *Data Structures and Algorithms* complete course for free please follow this link - kzbin.info/aero/PL6Zs6LgrJj3tDXv8a_elC6eT_4R5gfX4d
@fernandafernandes52004 жыл бұрын
Are you an angel? Do you have any idea how your videos help someone with serious learning disability? I have not enough words to thank your wonderful work! Thank you, thank you and thank you!!!!
@itsdineshvaryani4 жыл бұрын
I am happy it helped you !!!
@harshibandara8495 Жыл бұрын
I searched through a long video list on KZbin. But this was the one that helped me understand how this works. Thank you so much for this video. I am really grateful.💛
@shubhamagarwal14346 ай бұрын
Your playlist is like energy drink, i need before my DSA interviews...helped me changeing job last year and i am sure will help me this year as well...thanks a lot bro for this wonderful playlist..
@saranyavivekanandan90443 жыл бұрын
You are just amazing. The more I follow your videos, the more the respect for you grows. Thanks a ton!
@itsdineshvaryani3 жыл бұрын
Welcome. Please share this playlist with ur friends and colleagues. It will help channel grow and motivate me to add more. Thanks !!!!
@mohamedbalshy3105 Жыл бұрын
best video for recursion i have ever seen from backend developer with 4 years of exp .
@itsdineshvaryani Жыл бұрын
Thanks
@Satvikshukla00072 жыл бұрын
This is the best explanation I have seen on KZbin.
@itsdineshvaryani2 жыл бұрын
Thanks !!!
@shubhamagarwal14342 жыл бұрын
Best series for DS & Algo. I am also 10 yrs java exp guy. Was looking for DS & Algo free course over KZbin with java implementation and found this. Hats Off To You Man...Excellent Work. GOD BLESS YOU :)
@itsdineshvaryani2 жыл бұрын
Thanks !!!
@harikrishnans2054Ай бұрын
the best!!!!!!!!!!!!!!!!! the best !!!!!!!!!! !!!!!!!!!!!!! in the entire youtube for dsa.
@SubhashPavuskarhackzleo3 жыл бұрын
Greate explanation but this should handle duplicate check as well so i think Its should be like private Node insert(Node current, int value) { if (current == null) { return new Node(value); } if (value < current.value) { current.left = insert(current.left, value); } else if (value > current.value) { current.right = insert(current.right, value); } else { // value already exists return current; } return current; }
@hayden37744 жыл бұрын
Incredible explanation. Very easy to understand
@itsdineshvaryani4 жыл бұрын
Thanks !!!
@edreesomer9851 Жыл бұрын
man who are you?? that is great. if you are doing this for all data structures and algorithms you will be the best
@randipmalakar5542 жыл бұрын
Excellent explanation with right pace and example ! Thanks a LOT for helping new learners.❤
@itsdineshvaryani2 жыл бұрын
Welcome !!!
@dineshkumarg6601 Жыл бұрын
Animation explanation is excellent
@itsdineshvaryani Жыл бұрын
Thanks
@AjithKumar-uy4ew3 жыл бұрын
Wow , Amazing explanation, Thank you so much
@itsdineshvaryani3 жыл бұрын
Welcome !!!
@Habesha_Media_network10 ай бұрын
Thank you. best explanation for bst
@VITS-L-ny6jm Жыл бұрын
thank you sir for making dsa easy
@therightpath882 жыл бұрын
Wow finally I understood this concept thanks sir ❤️❤️❤️❤️
@itsdineshvaryani2 жыл бұрын
welcome !!!
@investime247 Жыл бұрын
very good explanantion. Thanks a lot.
@itsdineshvaryani Жыл бұрын
Glad it was helpful!
@NikhilSingh-ss3ho2 жыл бұрын
Can you add videos of adding value to binary tree as well
@itsdineshvaryani2 жыл бұрын
Will add soon !!!
@The_Coding_Cluster13 күн бұрын
thank you very much ❤
@shabaazkhan96753 жыл бұрын
I think the else block is violating the BST rule. We cannot insert a same value which is already present in the BST.
@therightpath882 жыл бұрын
Hmm use if else concept of nested if
@vedantmahajan5583 жыл бұрын
perfectly explained
@itsdineshvaryani3 жыл бұрын
thanks !!!
@futuremaster82042 жыл бұрын
Sir please complete AVL tree visualization I think you are the only one in KZbin teaching with clear visualization also i think no edtech platform is teaching in this way
@princemahato2817 Жыл бұрын
Sir I have one doubt , It is necessary to give return type to insert method . because , i used void and it gives nullpointerexception during printing data
@princemahato2817 Жыл бұрын
if we have to return the node then why we use void during linkedlist,stack,and queue
@shubhamsingh-lf6zy3 жыл бұрын
Sir how to find next largest element in binary tree
@vishalrane143911 ай бұрын
Thank you sir❤
@ece77003 жыл бұрын
thank you so much, great!
@itsdineshvaryani3 жыл бұрын
welcome !!! keep supporting and share it with ur friends as well !!!
@siamchowdhury87043 жыл бұрын
great video boss
@itsdineshvaryani3 жыл бұрын
Thanks !!!
@dineshkumarg6601 Жыл бұрын
Super bro
@itsdineshvaryani Жыл бұрын
Thanks
@snehasharma3377 Жыл бұрын
thanku sir
@SameedSyed-b6p Жыл бұрын
What if we entered value is equals to root in BST ?
@jackfrost8969 Жыл бұрын
if the value is equal to that of root then insert it to right side of tree