How to solve (almost) any binary tree coding problem

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ก.ย. 2024
  • 🔴 Learn graph theory algorithms: inscod.com/gra...
    ⚙ Learn dynamic programming: inscod.com/dp_...
    💡 Learn to solve popular coding interview problems: inscod.com/50p...
    ⌛ Learn time and space complexity analysis: inscod.com/com...
    🔁 Learn recursion: inscod.com/rec...
    NB: This video is ad-free, you can choose to support Inside code by purchasing one of the courses above or dropping a super thanks!
    NB2: Discounts of courses above are permanent
    I also post content on LinkedIn (inscod.com/lin...) and Instagram (inscod.com/ins...)

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

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

    This is the most undervalued tree algorithm video.
    Info here is gold. Thanks man!

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

      Thanks a lot for your comment

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

    I love people who make things this simple, just subscribed to your channel.

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

    Wow. Brilliant nugget!! Literally opened my eyes to the problems I am solving!!

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

      same😍😍

  • @tahaather7429
    @tahaather7429 8 หลายเดือนก่อน +7

    Dude what an explanation. Thank you so much, using recursion to solve binary tree problems has been a really huge problem till now

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

    Give this guy a whole lot of subscribers!!!!!!
    I feel confident to solve tree problems.You Rock man
    Please Create a video how to solve graph problems.

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

    This is actually an amazing piece of intuition

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

    Thank u so so soo much man
    Non linear data structures were really tough for me
    From school to college
    It was tough for me to understand
    But now when i am preparing for a job
    I saw your video
    And u saved my life
    Thank u so much

  • @marcin-guitar
    @marcin-guitar 2 ปีที่แล้ว +3

    Well, this is true for a certain kind of trees, where each node counts as equivalent. The same algorithm doesn't necessarily apply to segment trees, binary search trees, KD-trees etc. where an element's position in the tree is more important than its sole presence in the tree.

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

      Yes it doesn't apply for all types of trees sure

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

      @@insidecode do u have a similar video coming for binary search trees

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

    I just wanna say, that thinking of recursion in a way where we fragment the root node made sooooo much sense.
    My exam is next week, thanks!

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

    Very easy described man!
    Give this man a medal!

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

      Thankss ❤️

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

    This was the coolest explanation of complex problem ever..Thank you

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

      You're welcome!

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

      exactly. Once you realize these complex problems all have some pretty easy-to-remember patterns that make them easier to solve, it's just a matter of knowing which pattern to apply.

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

    Hey Inside Code I loved the video! I just wanted to correct the treeHeight algorithm. It needs to return -1 if the root is None because currently with the returning of 0, the leaf nodes get a height of 1 instead of a height of 0 which will cause the resulting tree height to be 1 greater than it should be.

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

    Finally, this is what I have been looking for; algorithms with proper visualizations. I had to buy all your 5 courses on udemy

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

      Thanks a lot for your comment!

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

      hello, is his dynamic programming course in python?

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

      Hello, yes it is

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

      @@insidecode thanks for the reply, I will purchase it. are all your other courses on Udemy in python as well ?

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

      @@ifeanyi3713 You're welcome! Yes

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

    With all respect to the author, this is trivial problems, I thought you clarify at least one of non-trivial: controlling levels of tree, controlling branches of tree, controlling nodes of tree or controlling symmethric of tree.

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

    Bruh. This finally makes sense.

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

    MAN YOU MADE ME UNDERSTAND RECURSION, finally! Thank you so much!

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

      You're welcome! Check the 3 hours recursion course I published recently here

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

      @@insidecode I’ll check it out. Thank you!

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

      @@danielapineyro1998 I don't have a video on that but I can explain it to you here, did you see in this video the function where we calculate the sum? We calculate the sum from the left, the sum from the right, and we add to them the parent's value. For your problem, you take the same function, but you just add two things, a global boolean variable output that starts at true, and a condition before returning the sum in the recursive function, that condition is: if root.data != left+right: output = False

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

      @@danielapineyro1998 What we're doing here is that we're traversing the tree, but at each node, after calculating the sum of both subtrees, we're comparing with the parent's value, and we're setting the final output to false if they're different, we used a global variable to be able to access it from any call

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

      @@danielapineyro1998 The code would be something like this:
      output = True
      def tree_sum(root):
      global output
      if root is None:
      return 0
      else:
      left = tree_sum(root.left)
      right = tree_sum(root.right)
      if root.data != left+right:
      output = False
      return root.data + left + right
      def all_equal(root):
      global output
      tree_sum(output)
      return output

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

    You just earned a new subscriber....
    Spent hours searching for a simple explanation on Trees, found it in your channel.

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

    For height of tree it must return -1 if root is null.(2.42)

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

      that depends if u are taking the height of a leaf node to be 1 or 0, it depends upon the book u are using

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

    LEGIT MAGICK!!!!! i just solved a question using this logic. SO LUCID. SO CLEAR. TO THE POINT

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

    amazing video !! please make more videos in binary trees and graphs

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

    bro just opened my mind

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

    u r genius...the most simple ways i see to learn this bianry tree...tysm blud

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

    thank you for this video. i'm really bad at binary trees but this way of thinking about it really helps

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

    Amazing way of presenting… it’s awesome

  • @RR-wx8gp
    @RR-wx8gp 4 หลายเดือนก่อน

    Honestly....
    This video is just the best!!!

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

    Thanks we got a whole diffrent persepective of solving problem. Could you make this kinda videos for other DS also, pls

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

      You're welcome! I'll see

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

    Very sell described. Good work. Keep it up👍

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

    This nails it

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

    Just the best idea to approach binary 🌲 questions

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

    This is exactly what I was looking for💥

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

    Super helpful ! Great content

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

    Fix: At 2:38, the base case should return -1 not 0

    • @Raven-zk2xq
      @Raven-zk2xq 3 ปีที่แล้ว

      Maybe I misunderstand why, but I think of it like this. If the input is simple None to begin with, is the height 0 or is it 1? From my understanding it would be 0, similar to how an len(arr) where arr is an empty array would also return 0.

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

      @@Raven-zk2xq Yes but height 0 is the height of a tree with one node only (the root), so when a tree has no nodes at all, its height is -1

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

    Superb explanation , Thanks.

  • @prasanthbupd
    @prasanthbupd 14 วันที่ผ่านมา

    the best video I have ever seen in my life definitely a like. and a subscribe

  • @KeshavKumar-qz7ow
    @KeshavKumar-qz7ow 3 ปีที่แล้ว +1

    1:20 the sum will be 110 instead of 120

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

      You took time to calculate :0 But thanks for telling me!

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

    Help full video thank you❤

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

    Kindly make a similiar video on Graphs. It will be soo helpfull. Thanks

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

    Thanku sor finally i understood Tree data after 2 months ,thanks a lot Your content is freat

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

    wow this actually helped me so much thx

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

    Thanks man, this is awesome!!

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

    This actually works holy shit this is insane

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

    Wow, thats such a good approach! Thanks

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

      You're welcome!

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

    great explanation sir, thank you so much

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

    Great video! I'm definetly subscribing😄

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

      Thanks for subbing!

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

    Thank you so much for this video!

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

      Glad it was helpful!

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

    Wonderful explaination

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

    THANK YOU!!

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

    Amazing man! very helpful

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

    OMG thank u so much !

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

    wow very well explained, thank you sooo much!

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

    This is amazing

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

    SUPER HELPFUL!

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

    Omg it's literally always the same thing, how have I never noticed this before?

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

    This man is literally the best!!!

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

    High quality video! Thanks

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

    4:20 nice

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

    simple beneficial and inspiring

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

    This is super cool. Thanks 👍🏻

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

    Wow! Super helpful!

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

    Thanks

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

    Great video

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

    Can we solve every binary tree problem using either BFS or DFS?

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

    Great channel

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

    Super helpful bro. Thanks a lot ❣️

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

    It's really Awesome 🤩

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

    Isn't this just post-order DFS?

  • @JohnDoe-yb9rg
    @JohnDoe-yb9rg 2 ปีที่แล้ว

    Will this formula work for Visible Tree Node problem? If yes, how? Thank you!

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

    best video. perfectly explained.

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

    Wow 😎 🥺 thanks brother no more grinding

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

    that bri-eff though XD (brief is said as breef, not bri-eff)

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

      oh thanks for info!

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

    The sum of elements at 1:21 is not 120.

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

      @@insidecode That was a bit nit-picky of me to point that out. The video was still very good and I look forward to watching more from you.

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

      Hello, after watching it again, it's actually 120, because we're returning sum of left subtree + sum of right subtree + root's value, and 52 + 53 + 5 gives 120 not 115, you forgot to also add the root's value which is 5

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

    Very Nice.God bless you..

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

    You've earned a new subscriber 🔥

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

    A BIG Thank you 🌹

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

    Thanks a lot🖤

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

    Thanks, share code too!!

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

    Hi..i have to appear a HireVue interview soon for Deloitte. Will this coursepack be useful to me?

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

      It contains a lot of popular problems on different patterns and data structures, so it will be useful for you for sure

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

    Damn never knew tree's can be broken down like this

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

    OMg this is amazing lol thank you so much

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

    Underated video

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

    Thank you

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

    Thx a lot!!!!!

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

      You're welcome!

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

    isn't the tree that appears at 30 seconds not a valid bst?

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

      It's not supposed to be a BST

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

    Sukriya Sir

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

    Amazing

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

    execellent

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

    How do you create the animation? Are you using any software for tha?

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

      With PowerPoint

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

      @@insidecodeOhhk. Thanks a lot.

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

      @@shashicsnitjsr You're welcome!

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

    Thank u

  • @lorenzo.fiorini
    @lorenzo.fiorini 3 ปีที่แล้ว

    Easy and straight forward

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

    Great!

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

    Recursive thinking

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

    can I donate to you on patreon? I rly liked this video.

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

    Please dont try to eat mic when ur speaking. Its not a proper etiquette. Btw very nice explanation.

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

      Thanks! This is quite an old video, can you check latest ones and tell me if sound quality improved?

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

      @@insidecode Woah its really good. Just curious what mic do you use now?

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

      The same mic (M-Audio Uber mic), just improved audio post processing

  • @d3v-x64
    @d3v-x64 2 ปีที่แล้ว

    omg thank you, you saved my ass

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

    Why you are so smart?

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

    How do you learn this for sure?

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

    Can we have pdf of these codes?

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

      I didn't make a PDF of them sorry

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

    Your code in 1:31 doesn’t seem to work

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

      What error you got? Maybe you didn't create Tree class or something

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

    Watch it in 0.75x

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

    But what about trees that are not binary?

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

      Also works with k-ary trees, instead of calling the function on tree.left and tree.right, you call the function on each children by using a for loop then you join the results (Example: sum of nodes of a k-ary tree:
      ...
      sum_children = 0
      for children in tree.children:
      sum_children += tree_sum(children)
      return tree.val + sum_children

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

      @@insidecode Thanks!

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

      @@yoman9446 You're welcome!