Тёмный

Maximum Depth of Binary Tree - 3 Solutions - Leetcode 104 - Python 

NeetCode
Подписаться 822 тыс.
Просмотров 244 тыс.
50% 1

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

 

26 сен 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 127   
@NeetCode
@NeetCode 3 года назад
🚀 neetcode.io/ - I created a FREE site to make interview prep a lot easier, hope it helps! ❤
@534A53
@534A53 2 года назад
this was really good, thanks foe showing us the different ways to solve the same problem because its like learning more than one thing at the same time (BFS, DFS, recursion, binary tree traversal, queues, stacks, etc. all in one video)
@kleadfusha8338
@kleadfusha8338 3 года назад
Your explanations have always been pretty amazing, but somehow they keep getting better and better!!
@NeetCode
@NeetCode 3 года назад
Thanks, I appreciate your kind words more than you think! 😃
@deewademai
@deewademai Год назад
The third solution should replace the order of "left" and "right" of the stack.append to become a pre-order tree traversal.
@iknoorsingh7454
@iknoorsingh7454 2 года назад
Hi Neetcode, Great work, keep it up! In iterative dfs, I think you should append the right node first because then it should be preorder traversal. But both will work the same anyway.
@ziyuzhao2442
@ziyuzhao2442 26 дней назад
Yeah Thats correct
@jasonswift7468
@jasonswift7468 Год назад
This is an extremely wonderful explanation. Keep up the hard work. Btw, it is the post-order method for drawing the third solution. The code of the third solution is a pre-order method. Anyway, It doesn't matter the result of this question. We can take either of pre-order method or the post-order method.
@michaelyao9389
@michaelyao9389 2 года назад
Somehow, I feel like the iterative dfs is not so `dfs`, it's till kind of `bfs`.
@sirmidor
@sirmidor 2 года назад
What makes it DFS is that new nodes to search are appended on the right, which is the same place where nodes are popped from. This means that deeper nodes of depth X + 1, which were found from a previous node at depth X, will always be tried before potential other nodes of depth X.
@marcoespinoza3327
@marcoespinoza3327 2 года назад
God bless you. I have stumbled on your channel and it has been helping me a lot with your explanations. I like how you did all three ways of doing this to help build that intuition for all of them. Thank you so much for making these videos.
@lonecreeperbrine
@lonecreeperbrine 2 года назад
IDK if this changes anything and if it doesn't can someone explain why. In the last solution when you added things to the stack you appended node.left and then node.right but for preorder traversal shouldn't have node.right been appended then node.left so when you pop the stack the left node is popped first ?
@KarthikChintalaOfficial
@KarthikChintalaOfficial Год назад
Hey NeetCode, In the Iterative DFS approach, within the while loop, if we append like this stack.append(node.left, depth+1); stack.append(node.right, depth+1); When we pop in the next iteration, then the right child will be popped and their children will be added right (because the right child is added last in the stack). I think the order should be reversed here so that the left children will be popped in the next iteration
@ashok2089
@ashok2089 2 месяца назад
The results will be the same in either way.
@tonyz2203
@tonyz2203 2 года назад
for the DFS iterative, why do we need to add the Null Node to the stack? We can do : if node.left: stack.append([node.left, depth+1]) if node.right: stack.append([node.right, depth+1])
@harishankar1368
@harishankar1368 2 года назад
We can also choose to not do that and still the result will be the same.
@vishnukumar4531
@vishnukumar4531 2 года назад
additional if-checks as part of the code, that is all!
@OMFGallusernamesgone
@OMFGallusernamesgone 2 года назад
for BFS, couldnt we just use your iterative DFS solution, but replace the stack with a queue?
@adventurer2395
@adventurer2395 Год назад
Excellent diverse approaches! The code explanation of the last one was pretty confusing though.
@BruhhMoment-ij5uo
@BruhhMoment-ij5uo Год назад
Hey, Can you tell me why are the leaf nodes returning 1 ? I think they should return 0 because their height is 0, so the height of the tree should be 2 right? because the no. of edges will be the height right?
@dipakkumarrai1442
@dipakkumarrai1442 2 года назад
Thank you so much for the diagrams sketch! It became clear now
@hemesh5663
@hemesh5663 2 года назад
Hey as we are following pre order , the order shd be root, left, right then as stack follow lifo shdnt we insert right first and left, this is small doubt anyway technically we will get same. sorry for asking a lame doubt please excuse me.
@riturajsingh9744
@riturajsingh9744 2 года назад
Can you explain why we used 'self', even when we were in the same function (a reference to recursive solution line#12)
@NeetCode
@NeetCode 2 года назад
It's required in python, since the function belongs to the object (self)
@abh830
@abh830 7 месяцев назад
How do you create these videos like on iPad or on the computer as its difficult to drawing otherwise ?
@theFifthMountain123
@theFifthMountain123 6 месяцев назад
BFS is useful for Leetcode 111.Minimum Depth of Binary Tree. Once you find the first leaf node, (not cur.left and not cur.right) return 1 + depth
@avtarchandra2407
@avtarchandra2407 2 года назад
5:11 made me laugh @neetcode...."I am showing that I am not able to solve even easy problem"
@Shivi1003
@Shivi1003 Год назад
Your videos are really very informative and helps a lot while solving questions .💙💙
@BruhhMoment-ij5uo
@BruhhMoment-ij5uo Год назад
Hey, Can you tell me why are the leaf nodes returning 1 ? I think they should return 0 because their height is 0, so the height should be 2 right?
@TharaMesseroux1
@TharaMesseroux1 2 года назад
Thank you NeetCode for this series!
@knockknockyoo5812
@knockknockyoo5812 2 года назад
I've watched his videos for a while. This is one of the best lectures. Thank you so much.
@jugsma6676
@jugsma6676 5 месяцев назад
Another variant is: def solution(root): cache = {} return helper(root, cache, 1) def helper(root, cache, level): if not root: return True cache[level] = root.val # [root.val] helper(root.left, cache, level+1) helper(root.right, cache, level+1) return max(cache.keys())
@nilshr2
@nilshr2 3 года назад
love you bro for great logical solutions
@szu-minyu3415
@szu-minyu3415 6 месяцев назад
Thank you for the clear explanation! You are wonderful :)
@RC-qr8bn
@RC-qr8bn 2 года назад
On the Iterative DFS explanation if its using preorder wouldn't 9 on the left subtree be added first to the stack and then 20? It looks like 20 was added first and then 9.
@timswen5280
@timswen5280 Год назад
I have the same question
@suri4Musiq
@suri4Musiq 3 месяца назад
10:53 Isn't the recurisve DFS a post-order traversal? We first do left, then right and then the current node right? Atleast that's how your code looked in the first solution
@Emorinken
@Emorinken 5 дней назад
Thanks man, I appreciate
@nikhilgoyal007
@nikhilgoyal007 Год назад
thanks! right should have been appended before the left yes ?
@namoan1216
@namoan1216 2 года назад
At first it is confusing for me but then I realized and your ideas are really effective
@JSarko_
@JSarko_ 2 года назад
Looking at the recursive dfs solution, how does traversing through each node return the value of 1 just by calling the function? so for example in the return line at 5:10, how does self.maxDepth(node.left) generate a value to be compared with in the max function? I don't see how it gets incremented with every function call? Just like to add the explanation of the algorithm is great, its just from a coding standpoint I don't understand because self.maxDepth(node.left) by itself returns 0
@jesalgandhi
@jesalgandhi 2 года назад
I am also confused about this, if anyone can provide a clear explanation of how a node generates a return value when recursing that would be very helpful
@natnaelberhane3141
@natnaelberhane3141 2 года назад
That's because we're adding 1 for each level. So for example, in the recursion, if the tree is empty, we return 0. That would terminate our code and return 0. But if our tree has at least a root, then the depth becomes 1. so we add that value for each level we encounter. that's why the recursive code is return 1 + max(maxDepth(root.left), maxDepth(root.right). So this means, as we go deeper into the tree, we keep adding 1 for each root or level. But once we reach the leaf nodes, the root.left and root.right of the leaf node would return 0. For example, if we have a tree with 3 levels, a b c d e our function call would be 1 + max(maxDepth(b), maxDepth(c)). maxDepth(b) would be 1 + maxDepth(d) maxDepth of d would be 1 + max(maxDepth(d.left, d.right)) both d.left and d.right are none (we hit our base case). Therefore they both return 0. This means maxDepth(d) would be 1 + 0 maxDepth(b) == 1 + maxDepth(d) which is 1 + 1 maxDepth(a) would be 1 + maxDepth(b) which is 1 + 1 + 1 So the function will finally return 3. Btw since the tree is symmetrical, I only took the a->b->d part of the tree for this explanation.
@kirillzlobin7135
@kirillzlobin7135 Год назад
Wooow... almost one line solution ))) You are amazing!!!
@SARDARIN
@SARDARIN 2 года назад
@ 11:25 you said in pre order traversal, we visit left tree first. That's not pre order, In preorder we visit the root node first, then the left and right trees.
@alexandersiewert9133
@alexandersiewert9133 Год назад
I’m a bit confused on the DSF on why it would be max(result, depth) wouldn’t depth be good enough?
@josephavila3539
@josephavila3539 Год назад
Hello, thank you so much for your amazing content, I am devouring your insights and its helping me grow while gaining confidence. My question, for DFS and BFS, should it be ROOT in the answers opposed to NODE? Thank you.
@RC-qr8bn
@RC-qr8bn 2 года назад
Do you think if I solved this question in a real interview with just recursive DFS would that be enough or should I also learn the iterative way to solve it too just in case.
@legatusmaximus6275
@legatusmaximus6275 2 года назад
Know iterative and recursive solution
@RC-qr8bn
@RC-qr8bn 2 года назад
@@legatusmaximus6275 Thanks
@darrylbrian
@darrylbrian 2 года назад
@neetcode - heads up, the link to this video on your website actually takes you to the comments page instead of the video itself.
@АнастасияМохор
@АнастасияМохор 8 месяцев назад
Thank you very much for your videos!
@iancampbell8420
@iancampbell8420 Месяц назад
3:40 “the max is clearly 2” idk man 1 seems pretty big
@RandomShowerThoughts
@RandomShowerThoughts Год назад
you might be the best at explaining these types of problems, and the theory behind them, wow
@tanoybhowmick8715
@tanoybhowmick8715 2 года назад
Thanks for the explanation.
@abrarmahi
@abrarmahi 7 месяцев назад
Great video as always
@avtarchandra2407
@avtarchandra2407 2 года назад
thankyou bro for adding the C++ codes on your website i do use fully your website .....and love you so much from India
@NeetCode
@NeetCode 2 года назад
No problem, glad it's helpful!
@anmolacharya309
@anmolacharya309 Месяц назад
Can someone recommend me some visaulization platforms to see how the code and logic works together? For example, the recursive calls. I am not 100% with recursion so wanted to see it
@priceton_braswell
@priceton_braswell 2 года назад
hate to sound stupid but confused on this one. ive been understanding recursion pretty well but this problem says the input is a root node, but it looks like the input isn't just one node but multiple items in an array. so is the whole array being input as root or just the first one. if its the whole array. would if not root always be true and always return 0. please hellp
@staceyonuora5329
@staceyonuora5329 2 года назад
The input is the root node but the root node is an object of the class Tree node (the class is defined in comments in the video above the solution class ) which has 3 properties the value, the left node and the right node. You can access all the nodes of the tree just from the root node. I hope I was able to help
@srisai-j4k
@srisai-j4k 11 месяцев назад
The explanation is very good. Please let me know where I can get this code. Please share the link
@sergii.golota
@sergii.golota 2 года назад
I'm wondering how to transform list to a tree object? Is there a python code to do that?
@YT.Nikolay
@YT.Nikolay 2 года назад
check out this problem -> leetcode.com/problems/convert-sorted-array-to-binary-search-tree/
@alexkim8965
@alexkim8965 Год назад
Why is the last solution DFS Preorder? Shouldn't it be considered as Level Order (BFS)? It goes through nodes by each level (visit/process siblings first) before visiting its child. I understand people normally say Queue is BFS and Stack is DFS, but I don't understand this concept. They both look BFS to me whether they use queue or stack, because you visit the nodes from top to bottom, visit/process siblings first before visiting/processing its own child. It's a question I had for some time, hope someone can answer 😛
@PrecisionWrittens
@PrecisionWrittens Год назад
That is only because the example tree doesn’t have much of a left side so the traversal gives the illusion of being BFS. However, say node 9 had children 4 and 8. Then we’d visit both 4 and 8 before 20 instead of going right from node 9 to 20. So it’s really just a crappy tree to use as an example bc it doesn’t differentiate BFS and DFS
@amberchen5804
@amberchen5804 Год назад
Thank you for the awesome explanation. Where can I find the excel sheet at the beginning of your video? I liked the short solution hint
@manuchehrqoriev
@manuchehrqoriev 10 месяцев назад
Thank you so much.
@vatsalsharma5791
@vatsalsharma5791 3 года назад
Awesome explanation ❤️ Can you plz make a video on N Queens problem?
@khangton4382
@khangton4382 2 года назад
For this particular problem using DFS, why did we opt to use the max keyword? I don't understand the reasoning behind this.
@sf-spark129
@sf-spark129 2 года назад
It is always better to actually write down the recursive calls' results step by step. Then, you will see why you need max() in the return statement. It took me about 10 problems of Binary Tree until I see that naturally. To answer your question, DFS goes deeper and deeper(lower and lower) of the tree recursively until it reaches a leaf node(base case: root = None). From there, it starts building up like climbing up a tree. Let's say you have climbed a good amount on the left side of the tree and also a good amount on the right side. You really can't tell which side you climbed more. Then, max(left, right) will give you the higher side's height(depth) instantly. When you go one step higher, which (let's assume) is the root, then you will get the maximum height(depth) of the tree by 1 + max(left, right). Code I use to understand below: def maxDepth_DFS(self, root: Optional[TreeNode]) -> int: if not root: return 0 leftNode = self.maxDepth(root.left) rightNode = self.maxDepth(root.right) return max(leftNode, rightNode) + 1
@mantrax314
@mantrax314 2 месяца назад
Thanks!
@EdenObengNanaKyei
@EdenObengNanaKyei 3 месяца назад
In a binary tree, the node value on the right should always be greater than the node values on its left, and also the parent node. Does this make the example given by leetcode wrong?
@thefuture5162
@thefuture5162 5 месяцев назад
0:36 😂 You are very funny brother
@sachitrao771
@sachitrao771 Год назад
good work sir
@taran7649
@taran7649 2 года назад
The BFS and DFS are both iterative right
@samlinus836
@samlinus836 Год назад
Simply awesome
@LongVu-sm8wm
@LongVu-sm8wm 2 года назад
great, this is helpful.
@Thejohnster1012
@Thejohnster1012 Год назад
final bit of code doesn't match up to drawing as it actually pops the right node first? correct me if wrong
@dumbfailurekms
@dumbfailurekms Год назад
you are correct. both work, but swap the order of how its pushed to stack to get pre order (NLR) This is technically an alternative pre order of NRL
@dipakkumarrai1442
@dipakkumarrai1442 2 года назад
Is there an equivalent Java version of implementing Max Depth of a tree using DFS/stack?
@runeyman
@runeyman 2 года назад
public int maxDepth(TreeNode root) { Stack stack = new Stack(); stack.add(new Pair(root, 1)); int depth = 0; while(!stack.isEmpty()){ Pair temp = stack.pop(); if(temp.treeNode != null){ depth = Math.max(temp.integer,depth); stack.add(new Pair(temp.treeNode.left, temp.integer + 1)); stack.add(new Pair(temp.treeNode.right, temp.integer + 1)); } } return depth; } public class Pair{ TreeNode treeNode; int integer; public Pair(TreeNode treeNode, int integer){ this.treeNode = treeNode; this.integer = integer; } }
@director8656
@director8656 3 года назад
Do I even have to say anything, good video!
@rajivsarkar277
@rajivsarkar277 3 года назад
Hi @NeetCode i am unable to grab the recursive and backtracking concept clearly.I have gone through all the videos but still unable to think about a solution using recusrsion and backtrack. will be of great help if u can guide me on the same
@naveenprasanthsa3749
@naveenprasanthsa3749 3 года назад
He is not alive
@nero9985
@nero9985 2 года назад
@@naveenprasanthsa3749 Yes he is lol
@sf-spark129
@sf-spark129 2 года назад
For the BSF approach, you don't need base case if you code like this: Instead of using "if not root: return 0", q = deque([root]) if root else None will do just fine. This is more NeetCode-ish style of code I figured. Yes, you like to keep your code succinct although that can be sometimes difficult to follow. :) Code below: def maxDepth_BFS(self, root) -> int: q = deque([root]) if root else None level = 0 while q: for i in q: node = q.pop() if node.left: q.appendleft(node.left) if node.right: q.appendleft(node.right) level += 1 return level
@verayan2019
@verayan2019 2 года назад
could anyone explain why res = [0] instead of res = 0?
@gottuparthiharichandana3381
isn't the maximum depth same as the height of the tree?
@choliu1918
@choliu1918 2 года назад
For some reason your BFS solition won’t pass this case on Leetcode today. [3,9,20,null,null,15,7]
@MahdiHijazi
@MahdiHijazi 2 года назад
The solution has a mistake, level should start from zero
@jonaskhanwald566
@jonaskhanwald566 3 года назад
lol. Breadth first search and depth first search are literally tongue twisters. Better say bfs and dfs.
@day35ofdebuggingthesamelin56
@day35ofdebuggingthesamelin56 2 года назад
what do you mean? It's just depfarstsaerch and breithfasbtshsearsch.
@sf-spark129
@sf-spark129 2 года назад
don't forget 'f' in between like me...😂 imagine saying BS in the intervew
@indhumathi5846
@indhumathi5846 Год назад
understood
@hwang1607
@hwang1607 Год назад
you are smart
@kedarnadh
@kedarnadh 3 года назад
How stack bottom becomes stack top in 3rd approach. pls explain
@ua9091
@ua9091 3 года назад
Generally stack should start from bottom, but while explaining he started putting items at the top (like a table) which is actually the bottom of the stack.
@amitjoshi7309
@amitjoshi7309 6 месяцев назад
I am not good with Recursion and tree thats why I cant even solve the simplest one liner solution...............
@thelonerat9557
@thelonerat9557 Год назад
5:07 I died
@arnoldwolfstein
@arnoldwolfstein 7 месяцев назад
in python we don't use camel case. it's snake case.
@arnoldwolfstein
@arnoldwolfstein 7 месяцев назад
for i range(len(q)). oh my
@arnoldwolfstein
@arnoldwolfstein 7 месяцев назад
buy thanks for the content
@Dobby_zuul
@Dobby_zuul 3 месяца назад
fyi, depth does NOT include the root (height of a tree does), the LeetCode description is wrong, root node is always at max depth 0.
@abhijitpai6085
@abhijitpai6085 2 года назад
I lost it at 00:35
@vs3.14
@vs3.14 Год назад
I did catch the node --> root. But ... here's what my aMaZiNg code resulted in - AttributeError: 'Solution' object has no attribute 'maxDeapth'. Did you mean: 'maxDepth'? **cries in the corner**
@jmbrjmbr2397
@jmbrjmbr2397 6 месяцев назад
I have a crush on you Neet..
@dipanshusingh
@dipanshusingh Год назад
@mjr6999
@mjr6999 2 года назад
Iterative Depfasajsdkdnf lol😂😂🙏🏻
@alexanderp7521
@alexanderp7521 9 дней назад
bfs iterative solution is soo ugly, it's basically: while q: while q: curr = q.popleft()
@peanutbutter785
@peanutbutter785 2 года назад
Such a clear explanation! Thank you :)
@Sheik1388
@Sheik1388 2 года назад
Can anyone please explain the syntax? I'm very new to OOP with Python, and I don't understand how we actually get the entire list of nodes (for instance "Input: root = [3,9,20,null,null,15,7]") through the treeNode class object which is not even a list...".
@oliverheber599
@oliverheber599 Год назад
Its misleading, root is actually just 3 in that example, they shouldn't call the list root, the list is the entire tree, but only the root (3, with it's left and right (9,20) filled ) will be passed into the maxDepth function
@ajayvishwanath1052
@ajayvishwanath1052 2 года назад
Thanks!
@NeetCode
@NeetCode 2 года назад
Thank you so much Ajay!!
@haha-hs7yf
@haha-hs7yf День назад
What's the diffference between bfs and iterative dfs?
@Ivan_lulz
@Ivan_lulz 5 месяцев назад
range(len(q)) bothered me a lot until I looked up that it was only evaluated at the start of the for loop.
@suri4Musiq
@suri4Musiq 5 месяцев назад
Do we really need the for loop inside the iterative bfs algorithm? Esp when this is a binary tree?
@grigorypiskunov418
@grigorypiskunov418 5 месяцев назад
Thank you Sir for your work, hardly appreciate that. I actually have a question about the 2nd implementation. If we user pop instead of popleft or use stack as list of values we have an issue for asymmetric trees. In this case we always have +1 vaules of levels. I have checked it with debugger and I don't understand yet why in case we append to the list it add instead of list to the upper Tree element a new one..
@juanmacias5922
@juanmacias5922 Год назад
I usually don't like recursion, but it was the simplest one. xD
@syafzal273
@syafzal273 8 месяцев назад
I had only coded up the recursive way, but good to know about the other 2 ways you described in this video
@raviyadav2552
@raviyadav2552 2 года назад
thnx for showing the different approaches
@abh830
@abh830 7 месяцев назад
create
@fakeasfluff6842
@fakeasfluff6842 2 года назад
A stack in python can hold 2 elements?
@milktea2755
@milktea2755 2 года назад
I believe the stack in Python is simply a list, and a list can hold individual elements, as well as tuples that hold two elements. This stack just holds a tuple of [node, depth] per node!
@aishwaryaranghar3385
@aishwaryaranghar3385 3 года назад
I loved this. Thanks sooo much.
@QVL75
@QVL75 2 года назад
Excellent explanation!