Mirror of a Tree | Love Babbar DSA Sheet | Amazon | Microsoft | Paytm 🔥 | GFG | Leetcode

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

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

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

    good

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

    how is this different from invert tree question and mirror tree ?

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

    Here I get error in my code!! 🥺
    It's about include related and file related error

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

      void mirror(Node* node)
      {
      // code here
      if(node== NULL)
      return ;
      mirror(node->left);
      mirror(node->right);
      //exchange(node->left,node->right);
      Node* temp=node->left;
      node-> left=node-> right;
      node-> right=temp;
      }

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

      make sure you have selected CPP

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

      @@muskanchoudhary9792 yeah

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

    It is a post-order traversal, right?

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

    But swapping is expensive operation can we avoid and think other approach????

    • @mukeshkumar-hy7yc
      @mukeshkumar-hy7yc 3 ปีที่แล้ว +3

      Node* Mirror(Node*root){
      Node*p,*q;
      if(root!=NULL){
      p=Mirror(root->lchild);
      q=Mirror(root->rchild);
      root->rchild=p;
      root->lchild=q;
      return root;
      }
      return NULL;
      }
      use this fun you will get best time complexity

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

    Yogesh bhaiya se video banaya karo yrr , apko toh java aati nhi

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

    array playist not completed

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

      We are trying to solve imp questions first and after that we will be solving rest of the questions.

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

    allah app ko salamat rakhe

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

    bhai dsa basic krne ke baad phele is list ke question kre ya phele competitive programming

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

      If you have done basics of DSA then start with sheet first, this will sharpen your dsa skills more

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

      After solving some questions if you are comfortable with this type of questions then start CP parallaly with sheet

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

      @@CodeLibrary ok brother

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

    Bro insta link

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

      Insta link-- instagram.com/i_am_yogesh_here/