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 Жыл бұрын
instead of making third variable we can also update the middle variable when there is a 2nd violation
@ujjwalverma58932 жыл бұрын
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); } }
@PRANAVMAPPOLI2 жыл бұрын
Thought same ✌️💯
@jiteshsingh48992 жыл бұрын
my mom said "ye ladka kitni mehnat karta h" - what a explanation striver bhaiya
@SatyamKumar-bw4vi2 жыл бұрын
Hare Krishna..! Got Placed in R & D of a Product Based Company..! Thanks Bhaiya..! I will tag you in Linkedln post in some time
@namratam1522 Жыл бұрын
You are the best instructor !! Thanks a ton for this content ! You are bringing a revolution striver!
@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 Жыл бұрын
In leetcode question the values are in range of [INT_MIN, INT_MAX], so this won't work there.
@stith_pragya Жыл бұрын
Thank You So Much for this wonderful video...🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻
@timjoyalle3182 жыл бұрын
This dude's neighbors get free lectures. Hope they appreciate it.
@chitranshjain50752 жыл бұрын
Such a brilliant explanation of the problem! Thank you very much fir helping all of us!
@apmotivationakashparmar722Ай бұрын
Thank you so much Striver !
@kalpeshmali14763 жыл бұрын
After watching your tree series i m pretty confident in Binary trees and bst 🔥🔥🔥🔥🔥🔥🔥
We have to make variable i, a global variable. So, that it can get updated after every recursive call.
@tusharagarwal53069 ай бұрын
13:55 which online coding judge or editor is that??
@pratikmhatre48152 жыл бұрын
I always feel motivated by your passion of explaining problems👍
@SharuxD2 жыл бұрын
The logic you have given to solve this is brilliant af. GG
@amanbhadani88403 жыл бұрын
Absolutely brilliant explanation as well as mind blowing implementation of code,just loved it bhaiya.
@ZebraZodiac7 ай бұрын
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.
@sreekanthyadav58016 ай бұрын
For many problems in BST, MORRIS Inorder approach is giving Stack Overflow error (RUN TIME ERROR). Is it same with everybody ?
@stith_pragya Жыл бұрын
🚨[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.....👍
@gyanendrasaurav87711 ай бұрын
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
@jerrywong51402 жыл бұрын
Very helpful and thorough explanation, love it!
@tempbot71906 ай бұрын
Much Love from London❤
@Ramu911911 ай бұрын
excellent explanation striver bhai
@anubhavpabby68562 жыл бұрын
Thank you striver bhaiya for making such a great series and it's helping me out in placement preparation
@parthsalat2 жыл бұрын
You seem to like teddy bears a lot
@Manjot_singh20023 ай бұрын
15:20 the ans is comming incorrect if we just swap the 49 and 50th line but Y case to un mein se ek hi chlega aggy peeechy sy kya farak pdta hai
@ayushbhargava840011 ай бұрын
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.
@preetisahani5054 Жыл бұрын
Awesome explanation
@studyafa715910 ай бұрын
i think there is no need of " prev != null" in line 27
@lavanyaprakashjampana9332 жыл бұрын
we love your content and we love you......🤟🖤
@shagunlamba64813 жыл бұрын
Great explanation , thank you.
@niranjansaha51352 жыл бұрын
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); } }
@prasadm3614 Жыл бұрын
Congratulations on 3 Lakh Subscribers
@ishakhutafale11636 ай бұрын
Watch these videos, and you'll never forget the importance of inorder traversal for BSTs!
@DeadPoolx171228 күн бұрын
UNDERSTOOD;
@gandhijainamgunvantkumar67832 жыл бұрын
Thank you so much striver bhaiya for providing such an amazing content :)
@adebisisheriff15910 ай бұрын
Thanks Man!!!
@prashantsahu62122 жыл бұрын
Just wow, the intution was awesome.
@Learnprogramming-q7f9 ай бұрын
Thank you Bhaiya
@vinaygoswami53742 жыл бұрын
Quite ambiguous explanation.
@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 Жыл бұрын
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.
@sparshsharma60683 жыл бұрын
Amazing explanation bhaiya!
@16aniketdutta582 жыл бұрын
The middle pointer can be avoided I guess!!!
@placementbaadshah86042 жыл бұрын
kzbin.info/www/bejne/oWPLkoCqhZyhrNU
@your_name962 жыл бұрын
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); } };
Why prev = new Tree(INT_MIN) That is not required !!!! Pls Anyone ???
@arpitjaswal42102 жыл бұрын
I simply made the prev node NULL and the code still got accepted.
@muditkhanna8164 Жыл бұрын
but what if there are more than one nodes that are swapped?
@SibiRanganathLАй бұрын
Understodd
@chiragbansod82529 ай бұрын
understood
@papayasprout2 жыл бұрын
Thanks for the video man.
@spyrowolf22113 жыл бұрын
what drawing software are u using?
@justinmyth49803 жыл бұрын
Why you have used middle,we can just update last instead of middle and it works fine??
@placementbaadshah86042 жыл бұрын
kzbin.info/www/bejne/oWPLkoCqhZyhrNU
@your_name962 жыл бұрын
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); } };
@justinmyth49802 жыл бұрын
@@your_name96 thanks bro btw which are u a college student?
@mohit9975 Жыл бұрын
@@justinmyth4980 Islamabad university , lahore
@harshitjaiswal943910 ай бұрын
understood.
@JujareVinayak2 жыл бұрын
Which device is used in videos?? I need one to practice.
@BhuwanSaretia2 ай бұрын
Instead of using the middle pointer, we can solve this using only two pointers. Here is the detailed solution class Solution { public: TreeNode* prev = NULL; TreeNode* first = NULL; TreeNode* second = NULL; void inOrder(TreeNode*& root) { if (root == NULL) return; inOrder(root->left); if (prev == NULL) prev = root; else { if (prev->val > root->val) { if (first == NULL) { first = prev; second = root; } else { second = root; } } } prev = root; inOrder(root->right); } void recoverTree(TreeNode* root) { inOrder(root); if (first == NULL) return; swap(first->val, second->val); return; } };
@ankurshukla64623 жыл бұрын
Why you need to allocate space to prev? I don’t think we need it.
@placementbaadshah86042 жыл бұрын
kzbin.info/www/bejne/oWPLkoCqhZyhrNU
@silicon97942 жыл бұрын
Perfectly explained....
@fazilshafi80834 ай бұрын
Java Solution 👇 class Solution { private TreeNode firstViolation = null; private TreeNode adjacentToViolation = null; private TreeNode secondViolation = null; private TreeNode prev = null; private void swap(TreeNode a, TreeNode b) { int temp = a.val; a.val = b.val; b.val = temp; } private void helper(TreeNode root) { if (root == null) { return; } // Traverse the left subtree helper(root.left); // Check for violations if (prev != null && root.val < prev.val) { if (firstViolation == null) { firstViolation = prev; adjacentToViolation = root; } else { secondViolation = root; } } // Update prev to current node prev = root; // Traverse the right subtree helper(root.right); } public void recoverTree(TreeNode root) { helper(root); if (secondViolation == null) { swap(firstViolation, adjacentToViolation); } else { swap(firstViolation, secondViolation); } } }
@arsilvyfish11 Жыл бұрын
Excellent explanation
@ErfanHossainShoaib2 жыл бұрын
If the inorder sequence is 3 25 7 8 10 15 20 12. Then...
Don't use middle pointer just 2nd one if found /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode() {} * TreeNode(int val) { this.val = val; } * TreeNode(int val, TreeNode left, TreeNode right) { * this.val = val; * this.left = left; * this.right = right; * } * } */ class Solution { TreeNode ptr1=null; TreeNode ptr2=null; TreeNode prev=null; public void getAns(TreeNode root){ if(root==null){ return; } getAns(root.left); if(prev != null && root.val< prev.val){ if(ptr1==null){ ptr1 =prev; ptr2=root; } else{ ptr2=root; } } prev=root; getAns(root.right); } public void recoverTree(TreeNode root) { getAns(root); int temp=ptr1.val; ptr1.val=ptr2.val; ptr2.val=temp; } }
@adarshkumargupta.2 жыл бұрын
bhai code bahut tej explain karte ho thoda slow karo yaar
@vibhu6132 жыл бұрын
Hey interviewer😆😅
@Xp-Sam2 жыл бұрын
why are we checking prev != NULL
@yashverma29862 жыл бұрын
tabhi toh compare kr payega bhai swapping ke lie
@Xp-Sam2 жыл бұрын
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_name962 жыл бұрын
@@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); } };
@rounakmukherjee9540 Жыл бұрын
We dont need to check the condition if prev!=NULL ;
@Anonymous-uj3jx2 жыл бұрын
Understood thanks :)
@gauravshukla5203 Жыл бұрын
If bst is not in correct order you will not get the preorder sorted
@charchitagarwal5896 ай бұрын
hey guys'
@abhiimali2 жыл бұрын
nice code explanation
@AnkitPandey-s9h Жыл бұрын
bhaiya you are great
@rks35222 жыл бұрын
13:10
@jaiminsolanki54783 жыл бұрын
Understood!
@ankitkumarsingh83463 жыл бұрын
striver rescued me here
@girikgarg12683 жыл бұрын
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-yr3zv3 жыл бұрын
Because the question states that only 2 nodes will be swapped
@techmoon_2 жыл бұрын
Great video
@rishabhgupta9846 Жыл бұрын
understood
@harshdasila6680 Жыл бұрын
Goat 🐐
@dreamyme5432 жыл бұрын
Understood:)
@rohanmadiratta642110 ай бұрын
shouldnt first be equal to root..how come first is set equal to prev
@ajayypalsingh2 жыл бұрын
💚
@girikgarg8 Жыл бұрын
Done!!
@amitswami31392 жыл бұрын
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