GFG POTD: 11/10/2023 | Check for Balanced Tree | Problem of the Day GeeksforGeeks

  Рет қаралды 448

GeeksforGeeks Practice

GeeksforGeeks Practice

Күн бұрын

Пікірлер: 3
@GeeksforGeeksPractice
@GeeksforGeeksPractice Жыл бұрын
Solution Function Link: ide.geeksforgeeks.org/online-cpp-compiler/b4d0bdb1-df21-44e6-b8da-6f1ccc96a1d6
@ganeshjaggineni4097
@ganeshjaggineni4097 4 ай бұрын
NICE SUPER EXCELLENT MOTIVATED
@prateekbhaisora
@prateekbhaisora Жыл бұрын
I think it is too overcomplicated. A simpler code is: class Solution{ public: int height(Node *root) { if (!root) return 0; return 1 + max(height(root->left), height(root->right)); } bool isBalanced(Node *root) { if (!root) return true; int l = height(root->left); int r = height(root->right); return abs(l-r) left) && isBalanced(root->right); } // TC = O(n) SC = O(n) };
L53. Largest BST in Binary Tree
17:27
take U forward
Рет қаралды 167 М.
Why no RONALDO?! 🤔⚽️
00:28
Celine Dept
Рет қаралды 95 МЛН
Confronting Ronaldo
00:21
MrBeast
Рет қаралды 33 МЛН
The IMPOSSIBLE Puzzle..
00:55
Stokes Twins
Рет қаралды 192 МЛН
L15. Check for Balanced Binary Tree | C++ | Java
12:30
take U forward
Рет қаралды 359 М.
Prime Number | School Practice Problem | GeeksforGeeks School
5:01
GeeksforGeeks School
Рет қаралды 989
Understanding B-Trees: The Data Structure Behind Modern Databases
12:39
2 Years of C++ Programming
8:20
Zyger
Рет қаралды 7 М.
AVL Trees & Rotations (Self-Balancing Binary Search Trees)
20:38
Back To Back SWE
Рет қаралды 353 М.
Top 7 Algorithms for Coding Interviews Explained SIMPLY
21:22
Codebagel
Рет қаралды 446 М.
Why no RONALDO?! 🤔⚽️
00:28
Celine Dept
Рет қаралды 95 МЛН