Balanced Binary Tree - Leetcode 110 - Python

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 ส.ค. 2024

ความคิดเห็น • 201

  • @NeetCode
    @NeetCode  2 ปีที่แล้ว +31

    🚀 neetcode.io/ - I created a FREE site to make interview prep a lot easier, hope it helps! ❤

    • @pranitpawar6136
      @pranitpawar6136 2 ปีที่แล้ว +1

      This is great! 2 feedback suggestions - please add search by title/LC problem number and make the status column look like checkboxes instead of radio buttons. Thank you very much for all the great helpful content. Makes a BIG difference!

  • @benzz22126
    @benzz22126 ปีที่แล้ว +121

    this is one of those problems where the solution is easy to understand but difficult to come up with yourself. great explanation as always !

    • @luiggymacias5735
      @luiggymacias5735 18 วันที่ผ่านมา

      if you understand how to calculate the height, is easier to come up with the solution, it was more straightfoward because i came across the problem "543. Diameter of Binary Tree" first

  • @mnchester
    @mnchester 2 ปีที่แล้ว +165

    This should be a Medium, especially because LC Maximum Depth of a Binary Tree is Easy, and this question is harder

    • @noober7397
      @noober7397 ปีที่แล้ว +15

      The O(N^2) solution is easy. If asked to solve in O(N) it would be medium ig.

    • @stephanmorel8979
      @stephanmorel8979 7 หลายเดือนก่อน

      🤣🤣🤣🤣🤣🤣

  • @amanrai5285
    @amanrai5285 2 ปีที่แล้ว +85

    This is definetly not an easy question

    • @siddhantkumar9492
      @siddhantkumar9492 3 หลายเดือนก่อน +6

      This is indeed a easy question , it's just that you need to do it in a readable way.
      def isBalanced(self, root: Optional[TreeNode]) -> bool:
      balancedtree = True
      def height(root):
      nonlocal balancedtree
      if not root:
      return 0
      left = height(root.left)
      right = height(root.right)
      if abs(left-right) >1:
      balancedtree = False
      return 0
      return 1+max(left, right)
      height(root)
      return balancedtree

    • @Ebrahem-outlook
      @Ebrahem-outlook 2 หลายเดือนก่อน

      It is so easy problem.... just go and understand the recursion. And every think will be easy

    • @WoWUndad
      @WoWUndad 2 หลายเดือนก่อน

      It's very easy and obvious if you study trees for 20 min

    • @user-pi9pn8ni6i
      @user-pi9pn8ni6i หลายเดือนก่อน

      I believe you find it easy now 😂

    • @juliancoward5703
      @juliancoward5703 หลายเดือนก่อน +1

      @@siddhantkumar9492 this made more sense for me

  • @pac1261
    @pac1261 ปีที่แล้ว +33

    I love the careful explanation of how "2" and "0" differ by more than 1, but the term "recursive DFS" is suddenly introduced as if everyone already knows what it means.

    • @christianmorera4127
      @christianmorera4127 ปีที่แล้ว +9

      I know right lmao

    • @yashwanthsai762
      @yashwanthsai762 ปีที่แล้ว

      fr

    • @brenodonascimentosilva507
      @brenodonascimentosilva507 11 หลายเดือนก่อน

      lmao

    • @zaakirmuhammad9387
      @zaakirmuhammad9387 11 หลายเดือนก่อน +9

      tbf, you shouldn't be doing Binary Tree questions without knowing what DFS is.

    • @flowyriv
      @flowyriv 10 หลายเดือนก่อน +2

      @@zaakirmuhammad9387 but not knowing the difference between 2 and 0 is okay? lol

  • @kthtei
    @kthtei ปีที่แล้ว +55

    I think this solution is a bit easier to read.
    class Solution:
    def isBalanced(self, root: Optional[TreeNode]) -> bool:
    self.balanced = True
    def dfs(root):
    if not root:
    return 0

    left = dfs(root.left)
    right = dfs(root.right)
    if (abs(left - right) > 1):
    self.balanced= False
    return max(left, right) + 1

    dfs(root)
    return self.balanced

    • @atrempest6152
      @atrempest6152 ปีที่แล้ว +3

      wow really readable, thank you, you made me understand the algorithme a bit better

    • @akshitaven9060
      @akshitaven9060 ปีที่แล้ว +2

      Thank you, I did the same method but made an error and was checking the comments if someone has posted this!

    • @AniruddhaShahapurkar-wu3ed
      @AniruddhaShahapurkar-wu3ed 7 หลายเดือนก่อน +1

      Wow, very nicely written. I skipped watching the video after reading this. Thank you for saving some time!

    • @antoinenijhuis450
      @antoinenijhuis450 7 หลายเดือนก่อน

      Is this the O(n^2) method?

    • @raidenmotors3033
      @raidenmotors3033 6 หลายเดือนก่อน +1

      Same solution, just waaay easier to read than using arrays.
      You can also use a nonlocal variable for balanced instead of a class member.

  • @suvajitchakrabarty
    @suvajitchakrabarty 3 ปีที่แล้ว +53

    Great video. The way I tried it was instead of returning two values, I returned one value: a negative one (-1) if at any node height was not balanced and check that instead. Also, I guess another optimization technique is checking the return value of dfs of the left traversal before doing the dfs for the right. If the left is already not height-balanced just return instead of doing the dfs for the right.

    • @NeetCode
      @NeetCode  3 ปีที่แล้ว +7

      Yeah thats a really good point!

    • @abuumar8794
      @abuumar8794 2 ปีที่แล้ว

      I can't understand the code
      ///dfs(root.left)///
      Is'n root is an list?

    • @suvajitchakrabarty
      @suvajitchakrabarty 2 ปีที่แล้ว +3

      @@abuumar8794 Root is not a list. Root is a node (normally an object with properties val, left & right)

    • @seanshirazi8638
      @seanshirazi8638 2 ปีที่แล้ว +1

      @@suvajitchakrabarty Could you please elaborate a bit on your optimization technique? Do you mean first calling dfs(root.left) instead of dfs(root) in the main/isBalnaced method?

    • @yitongxie6574
      @yitongxie6574 ปีที่แล้ว

      tks for the one-return trick

  • @faiqito6987
    @faiqito6987 11 หลายเดือนก่อน +2

    I love when you explain something for the first time and it clicks even before seeing the code! Shows how great the explanation is

  • @gregoryvan9474
    @gregoryvan9474 2 ปีที่แล้ว +22

    I found it makes it a little easier to write the code if you just use a global variable like in the "Diameter of a Binary Tree" problem you solved. Then you can just update the global variable and not have to return two variables in the dfs function.
    class Solution(object):
    def isbalanced(self, root):
    res = [1]
    def maxDepth(root):
    if not root:
    return 0
    left = maxDepth(root.left)
    right = maxDepth(root.right)
    if abs(left - right) > 1:
    res[0] = 0
    return 1 + max(left,right)
    maxDepth(root)
    return True if res[0] == 1 else False

    • @vishalshah6074
      @vishalshah6074 2 ปีที่แล้ว +3

      That's exactly what we need to do without making it more complex.

    • @jakjun4077
      @jakjun4077 ปีที่แล้ว

      u can optimizes your solution by adding a condition " if res[0] == 0: return -1" so that u dont have to traverse all the node once a subtree is not balanced and it will eliminate unnecessary steps
      def isBalanced(self, root):
      res = [1]
      def maxDepth(root):
      if res[0] == 0: return -1 # u can return any number because once we triggered res we have no way back
      if not root:
      return 0
      left = maxDepth(root.left)
      right = maxDepth(root.right)
      if abs(left - right) > 1:
      res[0] = 0
      return 1 + max(left,right)

      maxDepth(root)
      return True if res[0] == 1 else False

    • @YouProductions1000
      @YouProductions1000 ปีที่แล้ว +2

      Thanks for this solution. Why do you set res = [1] instead of res = 1. I tried assigning it to an int instead of the array, and for some reason it was not accepted.

    • @castorseasworth8423
      @castorseasworth8423 ปีที่แล้ว +3

      @@YouProductions1000
      res = [1] makes the outer variable "res" global so you are able to update its value inside the recursive call of the inner dfs function.
      However, I personally don't like this approach and instead I'd rather use the "nonlocal" keyword to access the the outer variable achieving the very same result in a cleaner fashion:
      def isBalanced(self, root):
      res = 1
      def maxDepth(root):
      nonlocal res
      if res == 0: return -1 # u can return any number because once we triggered res we have no way back
      if not root:
      return 0
      left = maxDepth(root.left)
      right = maxDepth(root.right)
      if abs(left - right) > 1:
      res = 0
      return 1 + max(left,right)
      maxDepth(root)
      return True if res == 1 else False

  • @sudluee
    @sudluee 3 ปีที่แล้ว +39

    Great video again. Do you think you could do a general video on recursive problem solving like the graph or dynamic programming videos?

  • @nw3052
    @nw3052 ปีที่แล้ว +4

    This code is simple and Pythonic, but I found a big optimisation by checking one subtree first, then if its boolean is false, we immediately return false and 0 as height. Thus we eliminate a lot of cases in which the left subtree is already false and the algorithm would go to the right subtree unnecessarily.

    • @Dhanushh
      @Dhanushh 11 หลายเดือนก่อน +1

      This right here! Even I was thinking the same. I figured out the solution but couldn't think of anything that will stop us from exploring further if we already found one the subtrees is not balanced. I wonder is this the only way?

  • @cyliu2434
    @cyliu2434 2 ปีที่แล้ว +5

    you can use a BFS and check if the max depth == ceil(log(N))

  • @mahdi_zaman
    @mahdi_zaman ปีที่แล้ว +3

    In case returning tuples in recursion is confusing to someone, here's a solution I did where the helper function returns just an integer that is either -1 or the max_depth:
    ------
    def isBalanced(self, root: Optional[TreeNode]) -> bool:
    def calc_depth(node):
    if not node:
    return 0
    left = calc_depth(node.left)
    right = calc_depth(node.right)
    if abs(left - right) > 1:
    return -1
    if min(left,right) == -1:
    return -1
    return 1 + max(left, right)
    return calc_depth(root) != -1

  • @visakhunnikrishnan7232
    @visakhunnikrishnan7232 2 ปีที่แล้ว +3

    You can use the keyword `nonlocal` to keep track and modify a variable within a function that is within another function. You can use this to keep to track of a variable `balanced`. This way you can check in your base condition whether the node is null or whether `balanced` is `False` and if either are true, return 0.

  • @prafulparashar9849
    @prafulparashar9849 2 ปีที่แล้ว +9

    The explanation was on-point as usual.
    One thing I find that the code is difficult to understand.
    Check out this python implementation, I tried to unpack what you actually did and this is also working.
    For me, it is a bit easier to understand.
    Here you go :
    class Solution:
    def isBalanced(self, root: Optional[TreeNode]) -> bool:
    # base case
    if not root:
    return True
    # recursion case -- this would also be bottom-up approach
    # as we are indeed going to the last node and then getting it's height
    if self.isBalanced(root.left):
    if self.isBalanced(root.right):
    lh = self.height(root.left)
    lr = self.height(root.right)
    if abs(lh-lr)

    • @shawnx7806
      @shawnx7806 2 ปีที่แล้ว +1

      seems good, but I think the code in the video is not that hard to understand if you rewrite the logic like this
      def isBalanced(self, root: Optional[TreeNode]) -> bool:

      def dfs(root):
      if not root:
      return True, 0
      left, right = dfs(root.right), dfs(root.left)
      #if left and right is balanced (if diff between left and right subtrees are less or equal to 1), return that boolean and the max height of the two
      if left[0] and right[0] and (abs(left[1] - right[1])

  • @sachinfulsunge9977
    @sachinfulsunge9977 2 ปีที่แล้ว +5

    I dont know how this problem falls in easy category!!

  • @TharaMesseroux1
    @TharaMesseroux1 2 ปีที่แล้ว +5

    Thank you so much for this series! Good luck in your future endeavors! 🍀

  • @CJ-ff1xq
    @CJ-ff1xq 2 ปีที่แล้ว +1

    I solved this with the O(n^2) solution of writing a DFS to find the height of a tree and calling that recursively at each level. Calculating both whether it's balanced and the height in a single recursive function just blew my mind...

  • @aaen9417
    @aaen9417 ปีที่แล้ว +1

    This explanation is one of the best you have ever made

  • @enigmatekinc3573
    @enigmatekinc3573 3 หลายเดือนก่อน

    good job mate!. yoiur videos are such a great help
    your channel happens to be my "" THE go to place" for leetcode problems

  • @jigglypikapuff
    @jigglypikapuff 10 หลายเดือนก่อน

    Thanks for an explanation! I think it may be more efficient if, instead of tracking the additional "balanced" variable, we raise a custom exception if an unbalanced pair of subtrees is found and immediately return False.
    E.g.
    def height(root):
    ...
    if abs(leftHeight - rightHeight) > 1:
    raise UnbalancedError
    ...
    try:
    height(root)
    return True
    except UnbalancedError:
    return False

  • @chair_smesh
    @chair_smesh 2 ปีที่แล้ว +5

    shouldn't it return -1 if the node is None? and 0 if it's a single node?

    • @jeffw5902
      @jeffw5902 5 หลายเดือนก่อน +1

      I was looking for someone else that noticed. His definition of height is incorrect.

  • @user-ej3iw8lw3w
    @user-ej3iw8lw3w 2 ปีที่แล้ว +3

    A balanced binary tree, also referred to as a height-balanced binary tree, is defined as a binary tree in which the height of the left and right subtree of any node differ by no more than 1.

  • @LWeRNeO
    @LWeRNeO 2 ปีที่แล้ว +5

    There are two problems you need to figure out to solve these kinds of tasks, first is how clever you are to understand/figure out an algorithm, and another one, can you write it in code. I kind of understand what is going on, and in most cases, I figure out a relatively optimal algorithm, the problem is I can't write those algorithms in code. I started python coding 5 months ago, 1 month of which I spent writing a project using one of the frameworks for a python crash course organized by the country's biggest software development company, and another one trying to learn all kinds of theoretical questions to prepare for the interview to get into that company, an interview is about to happen this week. I just hope, that one day I'll be good at solving tasks like this because the guy that was teaching us said that nowadays the world is lacking real software engineers/developers because nowadays the market is creating those who are good with frameworks but not those who know how to solve problems.
    Good videos BTW:)

    • @dinhnhobao
      @dinhnhobao 2 ปีที่แล้ว +6

      "I figure out a relatively optimal algorithm, the problem is I can't write those algorithms in code" - I totally relate with you on this! I also had this issue and strangely that no one has mentioned it until you did.
      What helped me was that I tried to do the problems in categories, so in that sense, I can learn how to implement BFS/DFS via recursion bug-free anytime. For example, you can do 10 tree problems that solve using BFS or DFS. After which, you will have a bug-free BFS/DFS code template that you can reuse anytime you face a new problem. The next time you saw a tree problem and realized that you need to do BFS/DFS, you already have a boilerplate on what things to implement. This would help a lot to implement bug-free solutions.
      Every person has their personal choice when it comes to implementation. For example, in the dfs function given, instead of checking whether the current node is null, some people would check it one step beforehand and check whether the left child and right child is null. In that sense, the base case would be a leaf node and not a null node.
      Another personal choice would be what things to return from the recursive call. Returning a pair of (is_tree_balanced, height) is not the only way to do this, there are many possible ways and you can explore!

  • @gustavofreitas3734
    @gustavofreitas3734 ปีที่แล้ว +1

    Does he run the code as is? How would the program know what is .left and .right if it wasn't previously stated?

  • @divinsmathew
    @divinsmathew ปีที่แล้ว +1

    Couldve used a global variable for result bool instead of passing it along everytime
    right?

  • @jjdeng9144
    @jjdeng9144 2 ปีที่แล้ว +2

    I recursively calculated the height of the tree at every node (with a null node having -1 height.) If the left and right children of a tree have heights differing by more than 1, I raise a custom exception. At the top level, if the custom exception is raised, it returns false. If it successfully complete the height calculation of all node, it returns true.

    • @UyenTran-hz5mv
      @UyenTran-hz5mv ปีที่แล้ว

      hey, can you share your code?

    • @CharlieWTV2
      @CharlieWTV2 ปีที่แล้ว

      @@UyenTran-hz5mv Same idea, without literally raising an exception:
      class Solution:
      def isBalanced(self, root: Optional[TreeNode]) -> bool:
      self.balanced = True
      def depth(root):
      if not root:
      return 0
      else:
      leftDepth = depth(root.left)
      rightDepth = depth(root.right)
      if leftDepth > rightDepth + 1 or rightDepth > leftDepth + 1:
      self.balanced = False
      return 1 + max(leftDepth, rightDepth)

      depth(root)
      return self.balanced

    • @hoainamnguyen6810
      @hoainamnguyen6810 3 หลายเดือนก่อน

      @@UyenTran-hz5mv th-cam.com/video/QfJsau0ItOY/w-d-xo.html&lc=UgxvRQn6588LrWOWxZB4AaABAg

  • @navaneethmkrishnan6374
    @navaneethmkrishnan6374 ปีที่แล้ว

    Something that helped me: Try to do the naive solution first. It follows the same pattern as diameter of a tree problem. I applied the same recursive idea and got the answer.

  • @vicenteferrara7626
    @vicenteferrara7626 3 ปีที่แล้ว +4

    Nice! Why do we take the max from the left and right subtree heights ?

    • @suvajitchakrabarty
      @suvajitchakrabarty 3 ปีที่แล้ว +5

      Because you want to return the height back to the parent node that called it. Height of any node/tree is the max height of its left or right path till the leaf nodes.

  • @putin_navsegda6487
    @putin_navsegda6487 ปีที่แล้ว +3

    this one is VERY difficult for me

    • @mjpaynewales
      @mjpaynewales 11 หลายเดือนก่อน

      The human brain crashes when looking at recursive functions.

  • @Alexkurochkin
    @Alexkurochkin 6 หลายเดือนก่อน

    A little bit easier decision that is based on a bool param inside class instead of all these manipulations with arrays in return params. BTW, NeetCode is a GOAT!
    class Solution:
    def __init__(self):
    self.is_balanced = True
    def isBalanced(self, root: Optional[TreeNode]) -> bool:
    def dfs(root):
    if not root:
    return 0
    left = dfs(root.left)
    right = dfs(root.right)
    if abs(left - right) > 1:
    self.is_balanced = False
    return 1 + max(left, right)
    dfs(root)
    return self.is_balanced if root else True

  • @HIDEHUMAN1
    @HIDEHUMAN1 ปีที่แล้ว

    does line 19 of your codes essentially kick off the recursive process of everything before it and apply them to lower levels of the tree?

  • @sezermezgil9304
    @sezermezgil9304 2 ปีที่แล้ว +5

    Great explanation.And i have some doubts in my mind. Does ''balanced'' variable would keep returning False if one of the subtrees are not balanced right ? I can't trace the recursion clearly.

    • @yejimmy3533
      @yejimmy3533 2 ปีที่แล้ว +1

      yes, because in LINE 14 the return statement is connected by 'and', in this way even one False would continuous return the False statement to the root.

  • @diptindahal909
    @diptindahal909 2 ปีที่แล้ว +3

    Came up with this short python implementation
    def isBalanced(self, root):
    """
    :type root: TreeNode
    :rtype: bool
    """
    def dfs(root):
    if not root:
    return 0

    l = dfs(root.left)
    r = dfs(root.right)
    if abs(l - r) > 1:
    self.res = False
    return 1 + max(l,r)
    self.res = True
    dfs(root)
    return self.res

    • @bashaarshah2974
      @bashaarshah2974 2 ปีที่แล้ว

      What is the run time for your algorithm?

    • @swaroopkv4540
      @swaroopkv4540 2 ปีที่แล้ว

      Y self.res=True outside function

  • @mohitchaturvedi4556
    @mohitchaturvedi4556 5 หลายเดือนก่อน

    This seems easier for me to Understand, Could also be written as:
    flag = [True]
    def dfs(root):
    if not root: return -1
    left = dfs(root.left)
    right = dfs(root.right)
    if abs(left - right) > 1: flag[0] = False
    return 1 + max(left, right)
    dfs(root)
    return flag[0]
    Also, In the Diameter problem, you considered height of an empty tree as -1 and that of leaf node as 0, WHEREAS in this video, you considered them 0 and 1 respectively. Which one is better to use in your opinion? Ik both would get the same result in the end.

  • @gregwhittier5206
    @gregwhittier5206 7 หลายเดือนก่อน

    10:17 left[1] and right[1] won't contain height as stated, but will contain height + 1. It doesn't make a difference when calculating the difference, however. The code in this solution is the same as 104 max depth of a binary tree, which defines depth as the number of nodes in the root to leaf path instead of edges, which isn't the standard definition of depth, which drives me crazy.

  • @blondedadnan7637
    @blondedadnan7637 ปีที่แล้ว

    if you're confused by why we need "left[0] and right[0] " in line 14 try the test case
    [1,2,2,3,null,null,3,4,null,null,4] step by step and it'll make much more sense. If you're not sure how draw the tree from case I just posted google image "array to binary tree". Trust me.

  • @shilashm5691
    @shilashm5691 2 ปีที่แล้ว

    class Solution:
    def isBalanced(self, root: Optional[TreeNode]) -> bool:
    # we are using mutable datastructure, to get the changes from the recurrsion call stacks.
    res = [0]
    def dfs(current_node) :
    # we are looking for last node in every branches of the tree, if it is the last then we returning 1. this 1 is for #making the problem simpler
    if not current_node :
    return 1
    else :
    # we just doing dfs.
    left, right = dfs(current_node.left) , dfs(current_node.right)
    # for each node, we seeing it left branch and right branch length and we getting the absolute value, if it is > 1, # then from the question we know, it is unbalance, so we are changing the value of the res list
    if abs(left - right) > 1 :
    res.pop()
    res.append(1)
    return max(left, right)
    dfs(root)
    if res[0] == 1 : return False
    else : return True
    Code might be longer, but the idea is pretty much straight forward. Go through the code and comments in code

  • @ratikchauhan4003
    @ratikchauhan4003 3 ปีที่แล้ว +2

    Amazing video as always!

  • @guths
    @guths 4 หลายเดือนก่อน

    This question can be easily solved using golang because you can return two values, bool and int, but in other languages can be hard to find a way to handle with boolean and the height.

  • @rafaelbnn
    @rafaelbnn 4 หลายเดือนก่อน

    I think with this one and the one about the diameter, one way to solve them is to think how you can use the maxDepth to come up with the solution. I didn't get it by myself on the diameter question, but was able to notice the pattern on this one

  • @lilygranger6264
    @lilygranger6264 2 ปีที่แล้ว +4

    why did you consider the height of a node without any child nodes 1 and not 0?

    • @ThEHaCkeR1529
      @ThEHaCkeR1529 2 ปีที่แล้ว +1

      I didn't get this too

    • @ijustdey
      @ijustdey ปีที่แล้ว

      ​@@ThEHaCkeR1529For example, lets say we have a tree that is just a leaf node (no children). The height of the leaf node is 1. This is cause the node itself account for an height while the two null children have 0 heights. Now imagine this leaf node as a subtree in a bigger tree, its height is 1.​

  • @abdul.arif2000
    @abdul.arif2000 ปีที่แล้ว

    this code is easier to understand
    # Definition for a binary tree node.
    class TreeNode:
    def __init__(self, val=0, left=None, right=None):
    self.val = val
    self.left = left
    self.right = right
    class Solution:
    def isBalanced(self, root: TreeNode) -> bool:
    def dfs(node):
    if node is None:
    return 0
    left_height = dfs(node.left)
    right_height = dfs(node.right)
    # If the left subtree or the right subtree is not balanced, return -1
    if left_height == -1 or right_height == -1:
    return -1
    # If the difference in heights of left and right subtrees is more than 1, return -1
    if abs(left_height - right_height) > 1:
    return -1
    # Otherwise, return the height of the current node
    return max(left_height, right_height) + 1
    return dfs(root) != -1

    • @user-nj8lu8ld9e
      @user-nj8lu8ld9e 8 หลายเดือนก่อน

      why are we using -1 to signal that the subtrees are unbalanced?

  • @MafiaXII
    @MafiaXII 2 ปีที่แล้ว +2

    Is there an iterative solution for this?

  • @5464654135756
    @5464654135756 4 หลายเดือนก่อน

    I don't even get what a balanced tree, let alone its method, so I came here for help LMAO. Thanks for your explanation!

  • @juhabach6371
    @juhabach6371 2 ปีที่แล้ว +1

    That tree at 1:36 is exactly what I did...😆😆

  • @anangelsdiaries
    @anangelsdiaries 2 วันที่ผ่านมา

    That moment when you find the solution, come here to see how good you did, and your algorithm was the naive one. Oof.

  • @yejimmy3533
    @yejimmy3533 ปีที่แล้ว

    thought this problem could use the same pattern with probelm "diameter of binary tree" >> directly use global VAR to record 'maxdiff' and finally judge its relation with 1

  • @aryankhullar7101
    @aryankhullar7101 11 หลายเดือนก่อน

    Can we create an exit condition here so that when we recieve a false the entire recursion tree stops and the final output is false. All options i considered just result in an early return instead of stopping the entire recursion tree.

  • @luckydb589
    @luckydb589 2 ปีที่แล้ว +1

    When balanced is False how will the recursion terminate? Or is it just that recursion will not terminate till it reaches root but the balanced value will be False?

    • @BoyhoJJ
      @BoyhoJJ 2 ปีที่แล้ว

      I believe that it will not early terminate, it will still go through all the nodes once and then return False

  • @sadia6157
    @sadia6157 8 หลายเดือนก่อน

    You could simplify this, do a maxdepth of left and right and if the diff is > 1 its unbalanced. You cannot have unbalanced left or right subtree but a balanced root.

  • @punatar
    @punatar หลายเดือนก่อน

    My solution (Time: 41 ms (80.55%), Space: 17.7 MB (35.80%) - LeetHub)
    class Solution:
    def isBalanced(self, root: Optional[TreeNode]) -> bool:
    res = True
    def dfs(root):
    nonlocal res
    if not root:
    return 0
    left = dfs(root.left)
    right = dfs(root.right)
    if abs(left - right) > 1:
    res = False
    return 1 + max(left, right)
    dfs(root)
    return res

  • @ameynaik2743
    @ameynaik2743 3 ปีที่แล้ว +3

    Basically, post order traversal.

    • @NeetCode
      @NeetCode  3 ปีที่แล้ว +2

      Yup, exactly!

  • @horumy
    @horumy ปีที่แล้ว

    You are just the best, thank you so much!

  • @jugalparulekar661
    @jugalparulekar661 3 ปีที่แล้ว +1

    Hey, awesome video yet again. Next, can you please solve the leetcode 218 - The Skyline Problem.

  • @digitulized459
    @digitulized459 ปีที่แล้ว

    The easier way is to just check if its an avl tree since avl trees maintain the height balance property, where the left and right subtrees can't differ by more than 1

    • @romo119
      @romo119 ปีที่แล้ว

      the tree isn't guaranteed to be binary search, just binary

  • @b.f.skinner4383
    @b.f.skinner4383 2 ปีที่แล้ว +1

    Thanks for the video. Quick question on line 14: what is the purpose of balance containing booleans for left and right? I omitted it from the code and the output was the same

    • @veliea5160
      @veliea5160 2 ปีที่แล้ว +2

      left and subtrees also have to be balanced. if you run the code on leetcode, it will not be accepted

  • @bigrat5101
    @bigrat5101 2 ปีที่แล้ว

    why the line of code, ' if not root: return [True, 0]' , will happen recursively and updating the height of each tree? it only defined under 'if not root' condition...then in line 13, you call dfs by passing left and right..do you mind provide a little more in depth explanations to this? thanks

    • @bigrat5101
      @bigrat5101 2 ปีที่แล้ว

      ah nvm, i got it. lol 'if not root' is the base node and it will happen when all the nodes have been passed in to dfs, then from each child and up, we get the height of each subtree, and if there is a subtree happens to be False, the recursion will break then return False automatically. otherwise, it will return True. I hope I understood this right?

  • @gunjanroy8876
    @gunjanroy8876 2 ปีที่แล้ว

    Thank you for the video. It is very easy to understand

  • @abodier9610
    @abodier9610 2 ปีที่แล้ว +2

    why is the height of a single node = 1

  • @rabbyhossain6150
    @rabbyhossain6150 ปีที่แล้ว

    class Solution:
    def isBalanced(self, root: Optional[TreeNode]) -> bool:
    self.isBalanced = True
    def findMaxHeight(root):
    if root is None:
    return 0
    left = findMaxHeight(root.left)
    right = findMaxHeight(root.right)
    diff = abs(left - right)
    self.isBalanced = self.isBalanced and diff

  • @anirbanfromartimstudios
    @anirbanfromartimstudios ปีที่แล้ว

    //my approach was similar to it (JS)
    var isBalanced = function(root) {
    let marker = [1]
    isUtil(root, marker)
    return marker[0] === 1
    };
    let isUtil = function(root, marker){
    if(!root) return -1;
    let l = isUtil(root.left, marker)
    let r = isUtil(root.right, marker)
    if(Math.abs(l-r) > 1){
    marker[0] = 0
    }
    return l >= r ? l + 1 : r + 1
    }

  • @marcelsantee1809
    @marcelsantee1809 ปีที่แล้ว

    I would use a tuple instead of an list when returning values from dfs

  • @rahuldwivedi4758
    @rahuldwivedi4758 3 หลายเดือนก่อน

    I think this could be simplified. How about this?
    var findHeight = function(root){
    if (root === null) return 1;
    var leftHeight = 1 + findHeight(root.left);
    var rightHeight = 1 + findHeight(root.right);
    return Math.max(leftHeight, rightHeight);
    }
    var isBalanced = function(root) {
    if (root === null) return true;
    var h1 = findHeight(root.left);
    var h2 = findHeight(root.right);
    return Math.abs(h1-h2)

  • @neighboroldwang
    @neighboroldwang 3 หลายเดือนก่อน

    Could someone explain a little bit what does 0 and 1 in "balanced = left[0] and right [0] and abs(left[1] - right[1]

  • @RushOrbit
    @RushOrbit ปีที่แล้ว

    Good explanation! I was able to code a mostly working solution with the explanation alone. Only thing I did different was return -1 if the tree was not balanced.

  • @aakashs1806
    @aakashs1806 2 หลายเดือนก่อน

    Hi Guys,
    I dont know why my code is not working, for one test case it is failing. Below is my code.
    Failing test case : [1,2,2,3,null,null,3,4,null,null,4]
    The left side and right side height, according to what i drew in paint for this array testcase, (assuming level order), height on right and left is 3, so I get it as balanced, but expected is false.
    :(
    /**
    * Definition for a binary tree node.
    * struct TreeNode {
    * int val;
    * TreeNode *left;
    * TreeNode *right;
    * TreeNode() : val(0), left(nullptr), right(nullptr) {}
    * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
    * TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
    * };
    */
    class Solution {
    public:
    int height(TreeNode *root)
    {
    if (!root)
    return 0;
    int lsh = 0, rsh = 0;
    lsh = height(root->left);
    rsh = height(root->right);
    if (lsh > rsh)
    return lsh+1;
    else
    return rsh+1;
    }
    int BalanceFactor(TreeNode *root)
    {
    if (!root)
    return 0;
    int lsh = 0, rsh = 0;
    lsh = height(root->left);
    rsh = height(root->right);
    return lsh - rsh;
    }
    bool isBalanced(TreeNode* root) {
    if (!root)
    return true;
    if (BalanceFactor(root) == 1 || BalanceFactor(root) == 0 || BalanceFactor(root) == -1)
    return true;

    return false;
    }
    };

  • @sykarius01
    @sykarius01 11 หลายเดือนก่อน

    class Solution:
    def isBalanced(self, root: Optional[TreeNode]) -> bool:


    res = True
    def maxDepth(root):
    nonlocal res
    if not root:
    return 0
    left = maxDepth(root.left)
    right = maxDepth(root.right)
    if abs(left - right) > 1:
    res = False
    return 1 + max(left,right)

    maxDepth(root)
    return res

  • @tynshjt
    @tynshjt 9 หลายเดือนก่อน

    I wish this solution is also there for other languages other than Python

  • @theone.591
    @theone.591 2 ปีที่แล้ว

    Would the first situation with O(n^2) time complexity be the case where we traverse the tree with dfs and do dfs again for each node to check if the subtree is balanced? Which eventually means nested dfs??

    • @user26912
      @user26912 ปีที่แล้ว

      I think checking everything like that is actually O(N log N) since you "find" every leave node from the top with is N times the depth.

  • @elviramadigan3970
    @elviramadigan3970 ปีที่แล้ว

    amazing explanation, thanks

  • @director8656
    @director8656 3 ปีที่แล้ว +1

    ik you get this a lot from me, but what can I say except great video.

  • @amitozazad1584
    @amitozazad1584 8 หลายเดือนก่อน

    I was able to solve it O(N^2), but I wondering if O(N) solution is possible. Nice video!

  • @gulfstream1800
    @gulfstream1800 10 หลายเดือนก่อน

    it looks like you have to go through all the nodes to determine if tree is balanced. But in fact, it's enough to find out that one of the subtrees is not balanced to get the answer.

  • @shasankkumar7246
    @shasankkumar7246 ปีที่แล้ว

    is it possible to solve this problem iteratively?? just curious..

  • @rahulbhatia9076
    @rahulbhatia9076 ปีที่แล้ว

    Amazing explanantion!

  • @yomamasofat413
    @yomamasofat413 3 หลายเดือนก่อน

    6:39 shouldnt the height of a leaf be 0? Given that height is the number of edges from a node to the deepest leaf. Therefore everything has to be -1 in this video

  • @amanshah4196
    @amanshah4196 2 ปีที่แล้ว

    where did we start from the bottom ?? its confusing

  • @bittah-hunter
    @bittah-hunter 2 ปีที่แล้ว

    What is the space complexity of this? Is it O(h) where h is height of tree?
    Is h also considered the # of recursive stack calls?

    • @shawnfrank5303
      @shawnfrank5303 ปีที่แล้ว

      I would say yes. My reasoning is:
      First h = log n
      Next, you would always finish the left tree first before going to the right so you will never have the full tree in your call stack at the same time so at most you would have h nodes in your call stack.

  • @breakthecode8323
    @breakthecode8323 ปีที่แล้ว

    You're the best, I swear...

  • @symbol767
    @symbol767 2 ปีที่แล้ว

    Thanks man, liked

  • @adithyagowda4642
    @adithyagowda4642 3 ปีที่แล้ว +2

    Your voice is kinda similar to the guy behind Daily Dose of Internet.

    • @NeetCode
      @NeetCode  3 ปีที่แล้ว +8

      Hey everyone, this is YOUR daily dose of leetcode 😉

    • @abhishekshah4443
      @abhishekshah4443 3 ปีที่แล้ว

      @@NeetCode You should start saying that.. Or something similar..

  • @EE12345
    @EE12345 ปีที่แล้ว

    I prefer the global variable approach to returning two values in one recursive function. Does anyone know if the latter method is better for medium problems?

    • @Moch117
      @Moch117 ปีที่แล้ว

      Don't know about mediums but for this problem its much easier to use global variable. Similar approach to the diameter problem
      Use a function to calculate the height but also take in the global variable as an input. I use Java so i just passed in an array of size 1

  • @littlelittlebing
    @littlelittlebing ปีที่แล้ว

    Why "if not root: return [True, 0 ] "? In leetcode 543, if the root is NULL, it returns negative 1. you explained that the height of a leaf node is 0, so the null node height is -1 🤔

  • @faizamusarrat8705
    @faizamusarrat8705 2 ปีที่แล้ว

    Hi I tried getting the 10% discount, but when I checkout it says coupon not valid. Can you help?

    • @NeetCode
      @NeetCode  2 ปีที่แล้ว +2

      Sorry about that, is the coupon code "neetcode"? Not sure what issue is, maybe it depends on location

    • @faizamusarrat8705
      @faizamusarrat8705 2 ปีที่แล้ว

      Thank you so much, is there a way I can request for few days of free trial? Its a lot of money so I want to try it first, even if it for 3-4 days

  • @Ebrahem-outlook
    @Ebrahem-outlook 2 หลายเดือนก่อน

    The most easy problem.. It’s implemente the basic recursion

  • @mjpaynewales
    @mjpaynewales 11 หลายเดือนก่อน

    When/where are the height values set?

  • @SOMESHKHANDELIA
    @SOMESHKHANDELIA 2 หลายเดือนก่อน

    A perhaps more readable solution (better than 82% time complexity and 42% space complexity):
    class Solution {
    public:
    int height_at(TreeNode* root, bool &bal){
    if(root == nullptr){
    return 0;
    }
    else if(root->left == nullptr && root->right == nullptr){
    return 0;
    }
    else if(root->left != nullptr && root->right == nullptr){
    int height_of_left_sub_tree = 1 + height_at(root->left, bal);
    int height_of_right_sub_tree = 0;
    int height_diff_at_curr_node = height_of_right_sub_tree - height_of_left_sub_tree;
    if(height_diff_at_curr_node < -1 || height_diff_at_curr_node > 1){
    bal = false;
    }
    return height_of_left_sub_tree;
    }
    else if(root->left == nullptr && root->right != nullptr){
    int height_of_left_sub_tree = 0;
    int height_of_right_sub_tree = 1 + height_at(root->right, bal);
    int height_diff_at_curr_node = height_of_right_sub_tree - height_of_left_sub_tree;
    if(height_diff_at_curr_node < -1 || height_diff_at_curr_node > 1){
    bal = false;
    }
    return height_of_right_sub_tree;
    }
    else{
    int height_of_left_sub_tree = 1 + height_at(root->left, bal);
    int height_of_right_sub_tree = 1 + height_at(root->right, bal);
    int height_diff_at_curr_node = height_of_right_sub_tree - height_of_left_sub_tree;
    if(height_diff_at_curr_node < -1 || height_diff_at_curr_node > 1){
    bal = false;
    }
    return max(height_of_left_sub_tree, height_of_right_sub_tree);
    }
    }
    bool isBalanced(TreeNode* root) {
    bool bal = true;
    height_at(root, bal);
    return bal;
    }
    };

  • @entoo9677
    @entoo9677 2 ปีที่แล้ว

    what is left[1] and right [1] ?

  • @kennethjones8722
    @kennethjones8722 2 ปีที่แล้ว

    I dont see how naive complexity is O(n^2) as in the recursive calls you would only be doing that node and down??

  • @sanooosai
    @sanooosai 6 หลายเดือนก่อน

    great thank you sir

  • @thmstbst
    @thmstbst 2 ปีที่แล้ว

    I dislike how this makes the precision of height hardcoded, but I guess that's leetcode. Does anyone have any tips for not hating these types of narrow solutions? Or Just not hating interview questions in general?

  • @namanvohra8262
    @namanvohra8262 2 ปีที่แล้ว +1

    Great video. But this time the code is confusing.

  • @andreytamelo1183
    @andreytamelo1183 2 ปีที่แล้ว

    Thanks!

  • @harshitdandelia4663
    @harshitdandelia4663 10 หลายเดือนก่อน

    I did not understand how is the count of the height being kept.

  • @anwarmohammad5795
    @anwarmohammad5795 2 ปีที่แล้ว

    that was really helpful

  • @rahuldas6777
    @rahuldas6777 3 ปีที่แล้ว

    so based on example 1 what is dfs(root.left) in that example?

    • @callmeshen9754
      @callmeshen9754 2 ปีที่แล้ว

      It's a recursion solution so in the first iteration it will be root.left=9 root.right=20 second the root.left will have null in both right and left but the right will have another iteration were root.left=15 and root.right=7 and after that in the third iteration root.left=15 will have null in both left and right and root.right will the same with both left and right null.

  • @samyakjain8632
    @samyakjain8632 5 หลายเดือนก่อน

    i will give half of my shalary, love from india hope it helps , oh feeling preoud indian armyyyyy jung ke maidaan mai kabhi na haarte

  • @ErsteSkywalker
    @ErsteSkywalker ปีที่แล้ว

    Why not do something like this? (in C++). I can get my head around solutions like this one easier. Basically, there is a helper that returns the height of the tree given a root node. Then, in the isBalanced function, we get the left and right heights using the helper. If the absolute difference between the heights of two children > 1, the node is not balanced. Else, the node is balanced and we recursively call the isBalanced function for the node's left and right children.
    class Solution {
    public:
    bool isBalanced(TreeNode* root) {
    if (!root) return true;
    int leftHeight = getHeight(root->left);
    int rightHeight = getHeight(root->right);
    if (abs(leftHeight - rightHeight) > 1) return false;
    return isBalanced(root->left) && isBalanced(root->right);
    }
    int getHeight(TreeNode* root) {
    if (!root) return 0;
    return std::max(getHeight(root->left), getHeight(root->right)) + 1;
    }
    };

    • @hoainamnguyen6810
      @hoainamnguyen6810 3 หลายเดือนก่อน

      Yes, this was the O(n^2) solution mention from 1:58 to 3:59

  • @aayush9080
    @aayush9080 7 หลายเดือนก่อน

    time complexity will be O(nlogn)