Count Total Number of Nodes in a Binary Tree | Easy Explanation

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

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

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

    Great solution you saved my assignment 😭

  • @niranjanb.m
    @niranjanb.m หลายเดือนก่อน

    wow, bro! well Explained

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

    Amazing Explanation

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

    Sir what an intro "Red Coder"!!! Wow...

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

    Really good tutorial!

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

    Easily Explained wow!!

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

    Very helpful brother

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

    Nice explanation......

  • @mdahsan-mm8cc
    @mdahsan-mm8cc 2 ปีที่แล้ว

    if root is none in the first case, then it will return 1 and will go again for the recursive call again check for if root.left is none then again it will return 1+ countNodes(root.left ) so in this way by the it will reach 4 it will reuturn 3 . kindly give the explanation how it is returning for the function call