Tilt of Binary Tree - Question | Binary Trees | Data Structure and Algorithms in JAVA

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

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

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

    Sir ye acha Kia aapne, trees beech mein pending reh gya tha, ab poora ho jaega,thank you

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

      cool is brri miss mt krna lekin

  • @shubhangi-misra
    @shubhangi-misra 4 ปีที่แล้ว +2

    Thank you sir!

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

      You are welcome!

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

    thanku sir

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

    correct code in c++
    int find(Node* root,int &ans)
    {
    if(!root)
    {
    return 0;
    }
    int l=find(root->left,ans);
    int r=find(root->right,ans);
    ans=ans+abs(l-r);
    return l+r+root->data;
    }
    int tiltTree(Node *root)
    {
    int ans=0;
    find(root,ans);
    return ans;
    }

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

      For better insights, visit nados.pepcoding.com, post your doubts, community will help you out there.