Тёмный
No video :(

Find Height of a Binary Tree using Recursive Function | Recursion approach | BST Implemenation | DSA 

Simple Snippets
Подписаться 246 тыс.
Просмотров 26 тыс.
50% 1

Опубликовано:

 

21 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 54   
@MuhammadAli-bf1rc
@MuhammadAli-bf1rc 3 года назад
I have not seen youtuber like him, great work! No music no intro just the lecture.
@mikexrag
@mikexrag Год назад
You're the best. I know recursive tracing takes a long time and can be annoying, but I really wish more professors would go through the processes like this.
@ayanibA1805
@ayanibA1805 2 года назад
Amazing... I think no one can explain better than you...Thanks a lot sir..
@manoj8374
@manoj8374 3 года назад
The best explanation and the best presentation. The way you explain concepts is simply perfect
@user-jc6qm3gp7s
@user-jc6qm3gp7s Год назад
absolutely beautiful with the dry run for the pseudo code, you're a very articulate instructor. loved the tutorial!
@navyamraushan3002
@navyamraushan3002 Год назад
Approach to explain recursion is nice bro, it really makes more sense now
@goutham3663
@goutham3663 2 года назад
Best explained I have seen for height of a tree.
@bulksouls6154
@bulksouls6154 3 года назад
This video finally made it click for me. Thank you.
@nandigamadheeraj8881
@nandigamadheeraj8881 3 года назад
Please Create some videos on templates, vectors , maps , iterators
@masumali8356
@masumali8356 11 месяцев назад
Lovely explanation...thank you ❤❤❤
@CricketLover-ok2pv
@CricketLover-ok2pv 3 года назад
Bs Yehi Speed Se Upload Krte Rho Bhai Thank U ❤️
@saurabhsoni4073
@saurabhsoni4073 Год назад
tanmay bro! you are doing such a very good hard work ...... thank you so so so much
@yourbestie4138
@yourbestie4138 3 года назад
He is a wonderful creator
@piyushgupta9344
@piyushgupta9344 2 года назад
More compact version: int height(Tree *r) { if(r==NULL) return 0; return max(height(r->left)+1,height(r->right)+1); }
@surajt3843
@surajt3843 2 года назад
U are a Legend man Brother
@jamesnash9675
@jamesnash9675 2 года назад
you are the best...............masum
@gamercumcoder2496
@gamercumcoder2496 3 года назад
Underrated video.
@prarambhiksur2104
@prarambhiksur2104 3 года назад
Wonderful explanation bro. Keep it up!! Cheers✌✌
@SimpleSnippets
@SimpleSnippets 3 года назад
Thank you so much 😀 Please support me by sharing the videos and our channel with your friends too. Thats the biggest help and support you can provide 😇
@manishpatil8326
@manishpatil8326 2 года назад
hey thanks perfect explanation
@anitajain8567
@anitajain8567 2 года назад
Best explanation ever
@joshithmurthy6209
@joshithmurthy6209 2 года назад
🥲 thank you very much !!!
@349_rahulbhattacharya6
@349_rahulbhattacharya6 3 года назад
please make some videos on map vectors sets as we need them in cp please please
@rizwanahmed9413
@rizwanahmed9413 3 года назад
sir can you please tell me why we use return -1 instead of return 0 in height function and return left + 1 or right + 1 instead of return left and right.
@SimpleSnippets
@SimpleSnippets 3 года назад
Because height is one less than the levels. Try dry running the code and it should make sense.
@abdelrhmanahmed1378
@abdelrhmanahmed1378 3 года назад
you can also think of it as, the height of the leaf node it self is 0 , so you return -1 for left node of the leaf node ,and -1 for the right node of the leaf node max(-1,-1)+1 --> 0 , so the height of leaf nodes is 0
@viveksuman9600
@viveksuman9600 3 года назад
Are we supposed to visualise this complex step by step process everytime we write recursion? Or just write recursion based on intution, getting some idea what it does but not knowing exactly how it does?
@SimpleSnippets
@SimpleSnippets 3 года назад
I keep asking this question to myself 😅 I suppose you get the hang of it slowly as you keep practicing recursion based algorithms
@viveksuman9600
@viveksuman9600 3 года назад
@@SimpleSnippets XD..Thanks !
@anchalpandey2787
@anchalpandey2787 3 года назад
waiting for the more videos sir
@ibrahemnjr9924
@ibrahemnjr9924 2 года назад
Thanks 🤍
@lomeshwagh8046
@lomeshwagh8046 2 года назад
Mast laga
@aryantiwari-datascience5562
@aryantiwari-datascience5562 3 года назад
SIR WHEN WILL YOU UPLOAD THE REMAINING VIDEOS CAN U TELL??
@DeepakSingh-le6di
@DeepakSingh-le6di 3 года назад
also upload the left out approach for the codes
@shouryagupta8763
@shouryagupta8763 3 года назад
nice explanation bro
@maaznomani2514
@maaznomani2514 3 года назад
Thank you, Sir
@ikhlasadely4556
@ikhlasadely4556 3 года назад
thank you
@SimpleSnippets
@SimpleSnippets 3 года назад
You're welcome
@cmcatholic1798
@cmcatholic1798 3 года назад
Very nice , thank you 😄😄
@SimpleSnippets
@SimpleSnippets 3 года назад
So nice of you
@HassanRaza-wy6pt
@HassanRaza-wy6pt 2 года назад
In line 2.3 and 2.4, why not subtract them? Lh - rh gives the same answer does it not?
@prachigoyal2438
@prachigoyal2438 3 года назад
Can you please complete the dsa playlist asap. heaps hash tables and graphs
@SimpleSnippets
@SimpleSnippets 3 года назад
Will try but it takes a lot of time
@motanveeralam2986
@motanveeralam2986 3 года назад
thank you sir
@SimpleSnippets
@SimpleSnippets 3 года назад
Most welcome
@yb3868
@yb3868 3 года назад
Is the playlist complete
@SimpleSnippets
@SimpleSnippets 3 года назад
Nope, will take lot of time
@dhruvrai6042
@dhruvrai6042 3 года назад
Why we sent obj.root ??
@DhavalBirade
@DhavalBirade 3 года назад
How to find specific node's height??
@SimpleSnippets
@SimpleSnippets 3 года назад
Traverse till that node first and then call the height function
@ChinmayAnand-nt7du
@ChinmayAnand-nt7du Год назад
bhai height is 3 here not 2
@PIYUSH-lz1zq
@PIYUSH-lz1zq 2 года назад
Height should be 3 !!
@ADVICETOPROCEED
@ADVICETOPROCEED 3 года назад
First viewer
@fordalberto6692
@fordalberto6692 3 года назад
My manager is the type of man that most people would like to invest with, he's not the best of all. But it's more about what he knows about the market and his predictions are accurate. You can try to see for yourself.
Далее