L52. Recover BST | Correct BST with two nodes swapped

  Рет қаралды 110,690

take U forward

take U forward

2 жыл бұрын

Entire DSA Course: takeuforward.org/strivers-a2z...
Check our Website:
Linkedin/Instagram/Telegram: linktr.ee/takeUforward
#treeSeries #striver #placements

Пікірлер: 120
@takeUforward
@takeUforward 2 жыл бұрын
Please like and share :)
@AdityaSharma-nr7qn
@AdityaSharma-nr7qn 2 жыл бұрын
What a co incidence, I was exactly studying the same problem and wasn't able to understand on my own and here comes Striver for rescue 😀😀
@ajaykr2811
@ajaykr2811 10 ай бұрын
instead of making third variable we can also update the middle variable when there is a 2nd violation
@stith_pragya
@stith_pragya 7 ай бұрын
Thank You So Much for this wonderful video...🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻
@chitranshjain5075
@chitranshjain5075 2 жыл бұрын
Such a brilliant explanation of the problem! Thank you very much fir helping all of us!
@dhrutidesai278
@dhrutidesai278 3 ай бұрын
Thankyou sir👍For always helping by your approaches
@namratam1522
@namratam1522 Жыл бұрын
You are the best instructor !! Thanks a ton for this content ! You are bringing a revolution striver!
@jiteshsingh4899
@jiteshsingh4899 Жыл бұрын
my mom said "ye ladka kitni mehnat karta h" - what a explanation striver bhaiya
@shinewanna3959
@shinewanna3959 Жыл бұрын
As u initialize prev as INT_MIN then u don't need to check prev != null in inorder recursive. Just correction. You are already great.
@darkexodus6404
@darkexodus6404 10 ай бұрын
In leetcode question the values are in range of [INT_MIN, INT_MAX], so this won't work there.
@Ramu9119
@Ramu9119 6 ай бұрын
excellent explanation striver bhai
@ZebraZodiac
@ZebraZodiac Ай бұрын
If trying to code in python use list to store prev,first,last and middle (or prev and last if not using middle) as when prev is just declared as just an argument, it gets reassigned and will not get passed on to the next recursive call.
@preetisahani5054
@preetisahani5054 9 ай бұрын
Awesome explanation
@tempbot7190
@tempbot7190 Ай бұрын
Much Love from London❤
@krishnaradhey2814
@krishnaradhey2814 11 ай бұрын
LeetCode 99 problem Can be done with morris traversal
@adebisisheriff159
@adebisisheriff159 5 ай бұрын
Thanks Man!!!
@shashankbajpai5659
@shashankbajpai5659 2 жыл бұрын
add morris traversal and we can do this problem on O(1) space as well.
@jerrywong5140
@jerrywong5140 2 жыл бұрын
Very helpful and thorough explanation, love it!
@ujjwalverma5893
@ujjwalverma5893 Жыл бұрын
We can avoid the middle pointer also just keep updating the first and second pointers - class Solution { private TreeNode first; private TreeNode second; private TreeNode prev; public void recoverTree(TreeNode root) { inorder(root); int temp = first.val; first.val = second.val; second.val = temp; } public void inorder(TreeNode root) { if(root == null) return; inorder(root.left); // Keep updating first and second which points to first and second numbers to swap if(prev != null && root.val < prev.val) { if(first == null) { first = prev; second = root; } else { second = root; } } prev = root; inorder(root.right); } }
@PRANAVMAPPOLI
@PRANAVMAPPOLI Жыл бұрын
Thought same ✌️💯
@amanbhadani8840
@amanbhadani8840 2 жыл бұрын
Absolutely brilliant explanation as well as mind blowing implementation of code,just loved it bhaiya.
@user-tk2vg5jt3l
@user-tk2vg5jt3l 3 ай бұрын
Thank you Bhaiya
@SharuxD
@SharuxD Жыл бұрын
The logic you have given to solve this is brilliant af. GG
@timjoyalle318
@timjoyalle318 2 жыл бұрын
This dude's neighbors get free lectures. Hope they appreciate it.
@kalpeshmali1476
@kalpeshmali1476 2 жыл бұрын
After watching your tree series i m pretty confident in Binary trees and bst 🔥🔥🔥🔥🔥🔥🔥
@studyafa7159
@studyafa7159 4 ай бұрын
i think there is no need of " prev != null" in line 27
@pratikmhatre4815
@pratikmhatre4815 Жыл бұрын
I always feel motivated by your passion of explaining problems👍
@SatyamKumar-bw4vi
@SatyamKumar-bw4vi Жыл бұрын
Hare Krishna..! Got Placed in R & D of a Product Based Company..! Thanks Bhaiya..! I will tag you in Linkedln post in some time
@ishakhutafale1163
@ishakhutafale1163 10 күн бұрын
Watch these videos, and you'll never forget the importance of inorder traversal for BSTs!
@DeependraSingh-jh8xf
@DeependraSingh-jh8xf 9 ай бұрын
fire hai bhau
@Mathurfrombihar
@Mathurfrombihar 2 жыл бұрын
//first brute method vectorv; int i=0; void tra(Node *root) { if(!root) return; tra(root->left); v.push_back(root->data); tra(root->right); } void check(Node *root) { if(!root) return; check(root->left); if(v[i]!=root->data) { swap(root->data,v[i]); } i++; check(root->right); } void correctBST( struct Node* root ) { tra(root); sort(v.begin(),v.end()); check(root); }
@ayushbhargava8400
@ayushbhargava8400 5 ай бұрын
find the two elements which are not at it's correct place through inorder traversal vector and sorted vector. again perform inorder traversal and have a check on root element if it's equal to incorrect element swap it.
@harshitjaiswal9439
@harshitjaiswal9439 4 ай бұрын
understood.
@abhinanda7049
@abhinanda7049 2 ай бұрын
understood
@shagunlamba6481
@shagunlamba6481 2 жыл бұрын
Great explanation , thank you.
@anubhavpabby6856
@anubhavpabby6856 2 жыл бұрын
Thank you striver bhaiya for making such a great series and it's helping me out in placement preparation
@parthsalat
@parthsalat Жыл бұрын
You seem to like teddy bears a lot
@gandhijainamgunvantkumar6783
@gandhijainamgunvantkumar6783 2 жыл бұрын
Thank you so much striver bhaiya for providing such an amazing content :)
@aakashgoswami2356
@aakashgoswami2356 2 жыл бұрын
Brute force Code: class Solution { public: void inorderTraversal(TreeNode* root,vector&arr){ if(root==NULL) return; inorderTraversal(root->left,arr); arr.push_back(root->val); inorderTraversal(root->right,arr); } void recoverBST(TreeNode* root, vector&arr,int &i){ if(root==NULL) return; recoverBST(root->left,arr,i); if(root->val != arr[i]){ root->val = arr[i]; } i++; recoverBST(root->right,arr,i); } void recoverTree(TreeNode* root) { vectorarr; inorderTraversal(root,arr); sort(arr.begin(),arr.end()); // for(auto ar:arr)cout
@susantakumardutta6283
@susantakumardutta6283 Жыл бұрын
We have to make variable i, a global variable. So, that it can get updated after every recursive call.
@stith_pragya
@stith_pragya 7 ай бұрын
🚨[IMPROVMENT IN THE CODE]:🚨 Hello Striver Bhaiya, 1- if you would have done middle = root in the else part then you wouldnt have had any requirement of the variable "last", you can do it using only two variables. 2- You could have also used an array of size 3 instead of global variables. But if your intention to was make code simpler for others to understand then it is all fine.....👍
@gyanendrasaurav877
@gyanendrasaurav877 5 ай бұрын
i also solved it using two vaiables because if in first case we can find the prev value at which the root value is less than prev then that means we find the greater element so the next voilation is always less than the first voilation so we can store last as root
@shantanukumar4081
@shantanukumar4081 2 жыл бұрын
Great Explanation !!!
@prashantsahu6212
@prashantsahu6212 2 жыл бұрын
Just wow, the intution was awesome.
@sparshsharma6068
@sparshsharma6068 2 жыл бұрын
Amazing explanation bhaiya!
@vinaygoswami5374
@vinaygoswami5374 2 жыл бұрын
Quite ambiguous explanation.
@tusharagarwal5306
@tusharagarwal5306 3 ай бұрын
13:55 which online coding judge or editor is that??
@sreekanthyadav5801
@sreekanthyadav5801 Ай бұрын
For many problems in BST, MORRIS Inorder approach is giving Stack Overflow error (RUN TIME ERROR). Is it same with everybody ?
@prasadm3614
@prasadm3614 Жыл бұрын
Congratulations on 3 Lakh Subscribers
@shivambajpeyi9008
@shivambajpeyi9008 2 жыл бұрын
this was smooth!
@keshavagrawal1027
@keshavagrawal1027 Ай бұрын
can someone tell me why in the last we do (prev=root ) pls if u know try to give a explanation...🙏
@lavanyaprakashjampana933
@lavanyaprakashjampana933 Жыл бұрын
we love your content and we love you......🤟🖤
@muditkhanna8164
@muditkhanna8164 10 ай бұрын
but what if there are more than one nodes that are swapped?
@papayasprout
@papayasprout 2 жыл бұрын
Thanks for the video man.
@peddikarthik7832
@peddikarthik7832 Жыл бұрын
even if we keep all variables and functions of class in public, code still works. But why are we keeping private for some functions and variables ?
@adiin-1940
@adiin-1940 Жыл бұрын
Shouldn't line number 24 of C++ be , if(prev ->Val != INT_MIN &&.....) rather than if(prev!=NULL &&....) because prev has already been set to a TreeNode with a value of INT_MIN so it will never be NULL?
@mayankbharti531
@mayankbharti531 Жыл бұрын
just using "if(root->val < prev->val)" is fine as the first root->val will always be greater than the INT_MIN so it automatically won't check for the first node.
@niranjansaha5135
@niranjansaha5135 Жыл бұрын
the first method can be optimised to O(n) + O(n) time, by removing the redundant sorting, void dfs(Node* root, vector &inorder){ if(root == NULL) return; dfs(root->left, inorder); inorder.push_back(root); dfs(root->right, inorder); } void correctBST( struct Node* root ) { vector inorder; dfs(root, inorder); int ct = 0; vector pos; for(int i = 1; i < inorder.size(); i++){ if(inorder[i]->data < inorder[i-1]->data){ pos.push_back(i); ct++; } } if(ct == 1){ swap(inorder[pos[0] - 1]->data, inorder[pos[0]]->data); } else if(ct == 2){ swap(inorder[pos[0]-1]->data, inorder[pos[1]]->data); } }
@JujareVinayak
@JujareVinayak Жыл бұрын
Which device is used in videos?? I need one to practice.
@silicon9794
@silicon9794 Жыл бұрын
Perfectly explained....
@siddhaarthsingh7414
@siddhaarthsingh7414 2 жыл бұрын
Why prev = new Tree(INT_MIN) That is not required !!!! Pls Anyone ???
@arpitjaswal4210
@arpitjaswal4210 Жыл бұрын
I simply made the prev node NULL and the code still got accepted.
@harshyallewar5876
@harshyallewar5876 2 жыл бұрын
Great explain
@anumoynandy5811
@anumoynandy5811 Жыл бұрын
Check out Morris Inorder traversal code related to these problem class Solution { public: void recoverTree(TreeNode* root) { if(!root){ return; } TreeNode*cand1=NULL; TreeNode*cand2=NULL; TreeNode*prev=NULL; TreeNode*curr=root; while(curr){ if(curr->left==NULL){ if(prev){ if(prev->val > curr->val){ if(cand1==NULL){ cand1=prev; } cand2=curr; } } prev=curr; curr=curr->right; } else{ TreeNode*temp=curr->left; while(temp && temp->right && temp->right!=curr){ temp=temp->right; } if(temp->right==NULL){ temp->right=curr; curr=curr->left; } else{ if(prev){ if(prev->val > curr->val){ if(cand1==NULL){ cand1=prev; } cand2=curr; } } prev=curr; temp->right=NULL; curr=curr->right; } } } swap(cand1->val,cand2->val); } };
@charchitagarwal589
@charchitagarwal589 16 күн бұрын
hey guys'
@arsilvyfish11
@arsilvyfish11 10 ай бұрын
Excellent explanation
@dhairyashiil
@dhairyashiil 2 жыл бұрын
Thank You : )
@Anonymous-uj3jx
@Anonymous-uj3jx 2 жыл бұрын
Understood thanks :)
@jaiminsolanki5478
@jaiminsolanki5478 2 жыл бұрын
Understood!
@spyrowolf2211
@spyrowolf2211 2 жыл бұрын
what drawing software are u using?
@ashishkumaryadav5252
@ashishkumaryadav5252 Жыл бұрын
Exceptional.
@16aniketdutta58
@16aniketdutta58 2 жыл бұрын
The middle pointer can be avoided I guess!!!
@placementbaadshah8604
@placementbaadshah8604 2 жыл бұрын
kzbin.info/www/bejne/oWPLkoCqhZyhrNU
@your_name96
@your_name96 2 жыл бұрын
yup, class Solution { TreeNode *prev; TreeNode *first; // TreeNode *middle; TreeNode *last; public: void inorder(TreeNode* root){ if(!root)return; inorder(root->left); // the node is not the root element if(prev != NULL and (root->val < prev->val)){ // if this is the first element if(first == NULL){ first = prev; } last = root; } prev = root; inorder(root->right); } void recoverTree(TreeNode* root) { prev = first = last = NULL; inorder(root); swap(first->val,last->val); } };
@ErfanHossainShoaib
@ErfanHossainShoaib Жыл бұрын
If the inorder sequence is 3 25 7 8 10 15 20 12. Then...
@jagjiwanchimkar8106
@jagjiwanchimkar8106 2 жыл бұрын
When this Series Complete
@abhiimali
@abhiimali 2 жыл бұрын
nice code explanation
@UECAshutoshKumar
@UECAshutoshKumar 10 ай бұрын
Thank you sir
@techmoon_
@techmoon_ 2 жыл бұрын
Great video
@jsuryakt
@jsuryakt 2 жыл бұрын
class Solution { TreeNode prev; TreeNode violation1; TreeNode violation2; public void inorder(TreeNode root) { if(root == null) return; inorder(root.left); if(prev != null && prev.val > root.val) { if(violation1 == null) violation1 = prev; violation2 = root; } prev = root; inorder(root.right); } public void recoverTree(TreeNode root) { inorder(root); int temp = violation1.val; violation1.val = violation2.val; violation2.val = temp; } }
@rounakmukherjee9540
@rounakmukherjee9540 Жыл бұрын
We dont need to check the condition if prev!=NULL ;
@user-gq3xu4vj8d
@user-gq3xu4vj8d Жыл бұрын
bhaiya you are great
@justinmyth4980
@justinmyth4980 2 жыл бұрын
Why you have used middle,we can just update last instead of middle and it works fine??
@placementbaadshah8604
@placementbaadshah8604 2 жыл бұрын
kzbin.info/www/bejne/oWPLkoCqhZyhrNU
@your_name96
@your_name96 2 жыл бұрын
I guess it works for understanding the algorithm then optimising it to first and last become easier class Solution { TreeNode *prev; TreeNode *first; // TreeNode *middle; TreeNode *last; public: void inorder(TreeNode* root){ if(!root)return; inorder(root->left); // the node is not the root element if(prev != NULL and (root->val < prev->val)){ // if this is the first element if(first == NULL){ first = prev; } last = root; } prev = root; inorder(root->right); } void recoverTree(TreeNode* root) { prev = first = last = NULL; inorder(root); swap(first->val,last->val); } };
@justinmyth4980
@justinmyth4980 2 жыл бұрын
@@your_name96 thanks bro btw which are u a college student?
@mohit9975
@mohit9975 Жыл бұрын
@@justinmyth4980 Islamabad university , lahore
@dreamyme543
@dreamyme543 Жыл бұрын
Understood:)
@girikgarg8
@girikgarg8 Жыл бұрын
Done!!
@adarshkumargupta.
@adarshkumargupta. Жыл бұрын
bhai code bahut tej explain karte ho thoda slow karo yaar
@vibhu613
@vibhu613 2 жыл бұрын
Hey interviewer😆😅
@gauravshukla5203
@gauravshukla5203 11 ай бұрын
If bst is not in correct order you will not get the preorder sorted
@ankurshukla6462
@ankurshukla6462 2 жыл бұрын
Why you need to allocate space to prev? I don’t think we need it.
@placementbaadshah8604
@placementbaadshah8604 2 жыл бұрын
kzbin.info/www/bejne/oWPLkoCqhZyhrNU
@girikgarg1268
@girikgarg1268 2 жыл бұрын
Is it not possible that there are more than two violations for example three or four violations? Why have we considered that either there will be one violation or two violations?
@RaunakKumar-yr3zv
@RaunakKumar-yr3zv 2 жыл бұрын
Because the question states that only 2 nodes will be swapped
@jayyy311
@jayyy311 Жыл бұрын
💚
@ankitkumarsingh8346
@ankitkumarsingh8346 2 жыл бұрын
striver rescued me here
@audiobooksforyouspark
@audiobooksforyouspark 2 жыл бұрын
Wow
@sksp9028
@sksp9028 11 ай бұрын
``` class Solution { private: TreeNode *first; TreeNode *last; TreeNode *prev; void inorder(TreeNode* root){ if(root==NULL) return; inorder(root->left); if(prev->val>root->val){ if(first==NULL){ first=prev; last=root; } else{ last=root; } } prev=root; inorder(root->right); } public: void recoverTree(TreeNode* root) { first=last=prev=NULL; prev=new TreeNode(INT_MIN); inorder(root); swap(first->val,last->val); } }; ```
@user-up6sl2gq8p
@user-up6sl2gq8p 6 ай бұрын
...............
@Xp-Sam
@Xp-Sam 2 жыл бұрын
why are we checking prev != NULL
@yashverma2986
@yashverma2986 2 жыл бұрын
tabhi toh compare kr payega bhai swapping ke lie
@Xp-Sam
@Xp-Sam 2 жыл бұрын
Bhai I think prev is never going to be NULL, because at first we are assigning it with INT_MIN and after that it always stores non-null root value. Wo condition hata ke dekho code chalega
@your_name96
@your_name96 2 жыл бұрын
@@Xp-Sam ha prev ko NULL kar de instead of INT_MIN tabh bhi chalega, my code without middle pointer, easy to optimize if yo examine the conditions in main function: class Solution { TreeNode *prev; TreeNode *first; // TreeNode *middle; TreeNode *last; public: void inorder(TreeNode* root){ if(!root)return; inorder(root->left); // the node is not the root element if(prev != NULL and (root->val < prev->val)){ // if this is the first element if(first == NULL){ first = prev; } last = root; } prev = root; inorder(root->right); } void recoverTree(TreeNode* root) { prev = first = middle = last = NULL; inorder(root); swap(first->val,last->val); } };
@rks3522
@rks3522 Жыл бұрын
13:10
@harshdasila6680
@harshdasila6680 10 ай бұрын
Goat 🐐
@rohanmadiratta6421
@rohanmadiratta6421 5 ай бұрын
shouldnt first be equal to root..how come first is set equal to prev
@amitswami3139
@amitswami3139 2 жыл бұрын
Can I do it using the concept which you are using in the last lecture (largest bst) when the condition get wrong largest of left
@placementbaadshah8604
@placementbaadshah8604 2 жыл бұрын
kzbin.info/www/bejne/oWPLkoCqhZyhrNU
@yatri6329
@yatri6329 Жыл бұрын
Baak bakwas krta h Khali kuch sahi se explain nhi krta h
@satyamchauhan9775
@satyamchauhan9775 2 жыл бұрын
I have done it in n time and n space using hashmap , and i was thinking my solution is best until i watched this video🥲
@kakarotsv50
@kakarotsv50 8 ай бұрын
Awesome explanation
@chiragbansod8252
@chiragbansod8252 4 ай бұрын
understood
@jagjiwanchimkar8106
@jagjiwanchimkar8106 2 жыл бұрын
When this Serie Complete
@takeUforward
@takeUforward 2 жыл бұрын
Tomorrow..
@jagjiwanchimkar8106
@jagjiwanchimkar8106 2 жыл бұрын
@@takeUforward cool
@rishabhgupta9846
@rishabhgupta9846 Жыл бұрын
understood
L53. Largest BST in Binary Tree
17:27
take U forward
Рет қаралды 136 М.
BS-17. Aggressive Cows | Binary Search Hard
26:44
take U forward
Рет қаралды 122 М.
когда повзрослела // EVA mash
00:40
EVA mash
Рет қаралды 4,1 МЛН
Survival skills: A great idea with duct tape #survival #lifehacks #camping
00:27
ИРИНА КАЙРАТОВНА - АЙДАХАР (БЕКА) [MV]
02:51
ГОСТ ENTERTAINMENT
Рет қаралды 14 МЛН
L48. Construct a BST from a preorder traversal | 3 Methods
16:32
take U forward
Рет қаралды 142 М.
I gave 127 interviews. Top 5 Algorithms they asked me.
8:36
Sahil & Sarra
Рет қаралды 614 М.
G-10. Rotten Oranges | C++ | Java
22:30
take U forward
Рет қаралды 265 М.
CRICKET MEMES & AMBANI WEDDING | VIPUL GOYAL| STAND-UP COMEDY
15:53
Vipul Goyal
Рет қаралды 1,2 МЛН
G-46. Disjoint Set | Union by Rank | Union by Size | Path Compression
42:15
BS-10. Finding Sqrt of a number using Binary Search
17:11
take U forward
Рет қаралды 99 М.
когда повзрослела // EVA mash
00:40
EVA mash
Рет қаралды 4,1 МЛН