Binary Tree - 45: Print Root To Leaf Every Path In Binary Tree

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

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

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

    Most underrated channel

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

      Thanks. Please share the channel content with your friends.

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

      @@CodingSimplified defently already suggested your binary tree playlist to many of my friends please do more videos

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

      @@sivaganesh4489 Thanks.

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

    wish I could know this channel before ❤️ lovely explanation brother ❤️

    • @CodingSimplified
      @CodingSimplified  4 ปีที่แล้ว

      Thanks for your nice feedback. Keep Watching.

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

    cool , i had the solution of removing the leaf node from the array after printing, but your solution is better its not updating the index++ instead index+1, nice !!!

    • @CodingSimplified
      @CodingSimplified  4 ปีที่แล้ว

      Thanks for nice feedback. Keep Watching.

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

    How about using stack instead of array? (no need to manage index). If ( node is leaf) { print stack; pop node; return}

  • @ShreyaSingh-vr9qi
    @ShreyaSingh-vr9qi 4 ปีที่แล้ว

    How we can solve this problem using iteration ??

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

      Here we're solving via preorder. You can take a cue from following video, where we're executing preorder without recursion. : th-cam.com/video/qv1nLlk5LEU/w-d-xo.html

    • @tastaslim
      @tastaslim 4 ปีที่แล้ว

      Easily using Iterative preorder and a map to have a check of nodes visited or not.

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

    do not waste your time by watching this video

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

    thank you very much :)

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

      Thanks for your nice feedback. Keep Watching.