Lowest Common Ancestor of a Binary Tree | Tree Data Structure playlist C++ | Hello World | Hindi

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

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

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

    Itne saare videos dekhne ke baad ...sirf isi me smjh aaya ...finally ...thank u sir ji...

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

    Your videos are very helpful....plese never stop this series 🙏🙏

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

    Agar aap ka bhai ek din google m bhi hogya na selection tho koi hairani ki baat nhi hogi
    bhot accha samjha the ho aap
    code ka hr ek line k bhot acche se explain krte ho

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

    Prince sir videos thoda speed se upload karo. Daily ek video toh atleast kar diya karo. By the way awesome content next Aditya verma of tree 👍🏻

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

    Please make a series of BST also. 🙏🙏
    Great content

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

    Very nicely explained bhaiya solution aache se samj me aaya hai your way of explanation is amazing

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

    Best explanation of this code ever

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

    really thankyou bhaiya apke explanation ke liye

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

    you the best bhaiya

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

    sir plz make this type of awesome without worrying views and subscriber

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

    make video on bst also bhaiya

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

    Very nicely explained, bhaiya, thank you so much

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

    Node* LCA(Node *root, int n1, int n2)
    {
    Node* ans=root;
    int k=root->data;
    if((n1==k) || (n2==k) || (n1k) ||(n1>k && n2k)
    LCA(root->right,n1,n2);
    }

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

    Plz make more such videos on trees ☺️

  • @Alokkumar-xu8sf
    @Alokkumar-xu8sf 3 ปีที่แล้ว +4

    op sir

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

    You are just best.

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

    very well explained!!

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

    class Solution {
    public:
    TreeNode* lowestCommonAncestor(TreeNode* root, TreeNode* p, TreeNode* q) {
    if(!root) return NULL;
    if(root->val== p->val || root->val== q->val) return root;
    TreeNode* left = lowestCommonAncestor(root->left,p,q);
    TreeNode* right =lowestCommonAncestor(root->right,p,q);
    if(left && right) return root;
    else if(left && !right) return left;
    else if(!left && right) return right;
    else return NULL;
    }
    };

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

    bhai youtube pr bhot sari videos hain but mai apke videos pr kyon ata hoon maloon hai?/KYONKI AP SAMJHA NE KE LIYE VIDEOS BNATE HO .... AUR SAB TH-cam KO .....POCKET MONEY KAMANE KA ZARIYA SMJHTE HAIN

  • @Pawankumar-fu9yb
    @Pawankumar-fu9yb ปีที่แล้ว

    path. pop_back()
    Bool wale function me end me ise use kyu kiye ho bhaiya

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

    //Khud kya hai bhai ,Thank you for making us believe in trying it ourselves
    int funct(TreeNode*root,TreeNode*p,vector&arr){
    if(root==NULL)return 0;
    arr.push_back(root);
    if(root->val==p->val)return 1;

    else{
    if(funct(root->left,p,arr))return 1 ;
    if(funct(root->right,p,arr))return 1;

    }
    arr.pop_back();
    return 0;
    }


    TreeNode* lowestCommonAncestor(TreeNode* root, TreeNode* p, TreeNode* q) {
    vectorarr1;
    vectorarr2;
    funct(root,p,arr1);
    funct(root,q,arr2);
    int n=arr1.size(),m=arr2.size();
    n= (n>m)?n:m;
    int i;
    for(i=0;ival!=arr2[i]->val)break;
    }
    return arr1[i-1];
    }

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

      Thoda jyada ho gaya hoga bt I'll try to improve

    • @Pawankumar-fu9yb
      @Pawankumar-fu9yb ปีที่แล้ว

      arr. Pop_back kyu kiye ho bhai

  • @UnKnown-id7ih
    @UnKnown-id7ih 2 ปีที่แล้ว +1

    Bhiya aapne bahot aacha smjhaya mgr dimag kharab ho gya
    .

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

      Koi baat nahi
      Dhere dhere samjh me aayega yaar
      Ekdum se pressure mat lo