Largest BST in a Binary Tree | BST | Love Babbar DSA Sheet | Amazon🔥

  Рет қаралды 17,423

Yogesh & Shailesh (CodeLibrary)

Yogesh & Shailesh (CodeLibrary)

Күн бұрын

Пікірлер: 51
@CodeLibrary
@CodeLibrary 3 жыл бұрын
UPDATE Node with value 12 will not make BST because it's not satisfying the BST condition by mistake I told that it's making BST... but in next part of intuition I have explained the correct things
@tech-rhino4469
@tech-rhino4469 2 жыл бұрын
Bhai ye comment dekhne se pehle me soch raha tha bande ne kaunsa maal phook lia hai
@DurgaShiva7574
@DurgaShiva7574 9 ай бұрын
bahut badiya padhate ho aap, behtareen
@zeenatfirdoshquadri8259
@zeenatfirdoshquadri8259 2 жыл бұрын
explanation much clearer than top tutors
@rawat_ji5183
@rawat_ji5183 2 жыл бұрын
true
@rawat_ji5183
@rawat_ji5183 2 жыл бұрын
perfect explanation sir 😁😁
@ankitdubey9310
@ankitdubey9310 3 жыл бұрын
kafi bawal solution!!
@ajitkumar4-yearb.tech.civi191
@ajitkumar4-yearb.tech.civi191 3 жыл бұрын
Thanks Bhaiya....ur videos are very helpful 😊
@CodeLibrary
@CodeLibrary 3 жыл бұрын
Always welcome
@parasagarwal3368
@parasagarwal3368 Жыл бұрын
Thanks. Great Explanation bhai.
@harshalgarg1149
@harshalgarg1149 3 жыл бұрын
Your videos are really helpful. 👌
@altafmazhar7762
@altafmazhar7762 2 жыл бұрын
Great Brother
@shaanbansal7775
@shaanbansal7775 3 жыл бұрын
thank you vro and you are a excellent teacher
@dhruv2014
@dhruv2014 3 жыл бұрын
Fantastic code and explanation 🔥🔥🔥
@rimpiranibaruah5353
@rimpiranibaruah5353 3 жыл бұрын
Excellent explanation
@tanyagupta0201
@tanyagupta0201 Жыл бұрын
OP 🔥
@vishadjain2696
@vishadjain2696 3 жыл бұрын
Nice explanation....
@abhishekchakrabarty2930
@abhishekchakrabarty2930 3 жыл бұрын
Very much helpful
@kumarivandana1554
@kumarivandana1554 3 жыл бұрын
Nice explanation
@ashishchaturvedi1301
@ashishchaturvedi1301 2 жыл бұрын
Thanks Man... great video... but line number 129 is not required.
@surajpatil3247
@surajpatil3247 3 жыл бұрын
bro ! x aur y me left ka min aur right ka max kyo liya? hume to left ka max aur right ka min chahiye na ????
@suryanshsingh6906
@suryanshsingh6906 3 жыл бұрын
Op bhai
@gauravjaiswal7407
@gauravjaiswal7407 3 жыл бұрын
very nice!!
@helloUser12373
@helloUser12373 Жыл бұрын
Bro, 4:58 12 root wala bst nahi banayega, bcoz 12>9 and 12>10.
@AnandKumar-uy7nn
@AnandKumar-uy7nn 2 жыл бұрын
Just a little trimmed code !! vector solve(Node* root){ if(root == NULL) return {1,0,INT_MAX,INT_MIN}; auto l = solve(root->left); auto r = solve(root->right); if(l[0] and r[0]){ if(root->data > l[3] and root->data < r[2]){ int x = l[2]; // min int y = r[3]; // max x = min(x,root->data); y = max(y,root->data); return {1,l[1]+r[1]+1,x,y}; } } return {0,max(l[1],r[1]),0,0}; }
@sudheer4866
@sudheer4866 3 жыл бұрын
There is no need to put the second line in the solve function as (!root) this line return statement will make sure all the code is correct
@akashjain3254
@akashjain3254 3 жыл бұрын
Nice explaination bhai 👌👌👌
@CodeLibrary
@CodeLibrary 3 жыл бұрын
Thanks
@FaisalKhan-oy4zz
@FaisalKhan-oy4zz 3 жыл бұрын
🔥
@nishantmittal1506
@nishantmittal1506 3 жыл бұрын
code sahi chl gya?? mera WA de raha hai
@ankitdubey9310
@ankitdubey9310 3 жыл бұрын
same bro, infact mere mein segfault aa raha hai
@ghazanferwahab5673
@ghazanferwahab5673 3 жыл бұрын
@@ankitdubey9310 if(y==MIN_VALUE) hoga,dono mein max leliya hai
@chanduchandrakanth5131
@chanduchandrakanth5131 3 жыл бұрын
Bro next topic is stack and queues
@CodeLibrary
@CodeLibrary 3 жыл бұрын
Okay
@tekbssync5727
@tekbssync5727 3 жыл бұрын
3:54 wait what? galat bol rha hai bhai ... 😂
@CodeLibrary
@CodeLibrary 3 жыл бұрын
Yaa node with 12 will not make BST by mistake I told that it will make BST... But age intuition sahi diya hu
@zyro9922
@zyro9922 2 жыл бұрын
Best explanation
@bholeKBhakt
@bholeKBhakt 3 жыл бұрын
Discord link ?
@tusharkumar9511
@tusharkumar9511 3 жыл бұрын
bhai tree aur linked list ki playlist fadddu h
@CodeLibrary
@CodeLibrary 3 жыл бұрын
Thanks 😀
@gauravkumarsaini9082
@gauravkumarsaini9082 2 жыл бұрын
banda nhi hai, element hai bhai....
@25694448
@25694448 3 жыл бұрын
Can you please provide the Java Code for this problem
@Surajrawat-xx1gw
@Surajrawat-xx1gw 2 жыл бұрын
bro how can i get this excel sheet
@CodeLibrary
@CodeLibrary 2 жыл бұрын
It's given in description
@pranjaljain7331
@pranjaljain7331 3 жыл бұрын
12 wala bst nahi banega because 12>9 and 12>10
@tekbssync5727
@tekbssync5727 3 жыл бұрын
exactly
@sainisaab684
@sainisaab684 2 жыл бұрын
flow flow me feel le gya bhaii :)
@srishtiporwal2938
@srishtiporwal2938 2 жыл бұрын
My 16th test case is failing
@namanftw8641
@namanftw8641 3 жыл бұрын
opppp
@ramswrooppatidar7599
@ramswrooppatidar7599 10 ай бұрын
abe daru pee ke vedio bante ho kya beee , 12 ke right me dono chhote hai ,
@CSBPRINCE_KUMAR
@CSBPRINCE_KUMAR 3 жыл бұрын
Nice explanation
Flatten BST to sorted list | BST | Love Babbar DSA Sheet | Amazon🔥
16:15
Yogesh & Shailesh (CodeLibrary)
Рет қаралды 12 М.
Чистка воды совком от денег
00:32
FD Vasya
Рет қаралды 2,7 МЛН
Twin Telepathy Challenge!
00:23
Stokes Twins
Рет қаралды 119 МЛН
Молодой боец приземлил легенду!
01:02
МИНУС БАЛЛ
Рет қаралды 2,1 МЛН
Check whether BST contains Dead End | BST | Love Babbar DSA Sheet | Amazon🔥
20:55
Yogesh & Shailesh (CodeLibrary)
Рет қаралды 12 М.
Lecture 73: Largest BST in a Binary Tree || C++ Placement Series
23:09
CodeHelp - by Babbar
Рет қаралды 87 М.
⚡️NEWS | RUBLE COLLAPSE | STRIKE ON CRIMEA | PUTIN IN KAZAKHSTAN
10:34
Ходорковский LIVE
Рет қаралды 192 М.
L53. Largest BST in Binary Tree
17:27
take U forward
Рет қаралды 166 М.
Binary Tree in Data Structures | All about Binary Tree | DSA Course
1:22:13