How to Find the Diameter Of Binary Tree(Better Approach) - C++

  Рет қаралды 38,789

Coding Ninjas

Coding Ninjas

Күн бұрын

Пікірлер: 24
@CodingNinjasIndia
@CodingNinjasIndia 3 жыл бұрын
Register for Coding Ninjas Scholarship Programme: bit.ly/CNSCHOLARSHIP
@NaveensinglaYT
@NaveensinglaYT 2 жыл бұрын
its been 4 years since this video was posted but it is still the best video on the internet
@yuv54
@yuv54 5 жыл бұрын
Man!! Enjoyed a lot. Very well explanation and love the way you explain. Keep it up...
@anujjadhav2771
@anujjadhav2771 3 жыл бұрын
Very well explained, also which editor is sir using?
@abhi4unme2002
@abhi4unme2002 6 жыл бұрын
height in case of null should be -1 not zero, if you assume height of root is 0 not 1.
@geekySRM
@geekySRM 3 жыл бұрын
If you do -1, then you should do leftHeight + rightHeight + 2.. which is the same thing what Sir did.
@debasismandal1924
@debasismandal1924 4 жыл бұрын
I'm a simple person I see vi I press like
@namantiwari7155
@namantiwari7155 6 жыл бұрын
Amazing explanations, helped me a lot!
@RCorpVideos
@RCorpVideos 6 жыл бұрын
Hi Sir, I think in height() one more if condition should be there for checking the leaf and here is the total code for finding the height of the binary tree. Well I am writing this code in C language. int height(struct node *head){ if(!head){ return 0; } if(!head->left && !head->right){ return 0; } return 1+ max(height(head->left),height(head->right)); }
@mohitarora2190
@mohitarora2190 5 жыл бұрын
yeah but this condition is not necessary. it will still work without this condition.
@sarfarazalam6077
@sarfarazalam6077 4 жыл бұрын
Great explaination. Thank you!
@CodingNinjasIndia
@CodingNinjasIndia 4 жыл бұрын
Thank you
@kaushtubrawat6114
@kaushtubrawat6114 6 жыл бұрын
Very nicely explained.. thnx sir
@mohitarora2190
@mohitarora2190 5 жыл бұрын
how it this better? it is doing it in O(n2) time complexity
@abhishekgautam1063
@abhishekgautam1063 5 жыл бұрын
In which course this topic is been taught?
@MultiSudipta
@MultiSudipta 4 жыл бұрын
Data structure, algorithm....
@vivekgr3001
@vivekgr3001 4 жыл бұрын
Good explanation
@neetisharma3768
@neetisharma3768 5 жыл бұрын
thank you :)
@aniketsriwastva6345
@aniketsriwastva6345 4 жыл бұрын
Great explaination
@letsrock7354
@letsrock7354 6 жыл бұрын
well explained
@durbijkewat7671
@durbijkewat7671 4 жыл бұрын
Diameter Of Binary Tree = left_height + right_height + 1
@CodingNinjasIndia
@CodingNinjasIndia 4 жыл бұрын
IGot queries related to Binary tree , Let us know in the comments section In this video you will learn how to calculate the diameter of a Binary tree with a slightly different approach. 0:20: Diameter of a Binary Tree. 2:06 : Assumptions for calculating the diameter of a Binary tree. 3:10 Condition where diameter of binary tree will be the sum of lh and rh. 3:30 Condition where both the nodes are on the left side in that case lhe diameter will be ld. 3:35 Condition where both the nodes are on the right side in that case the diameter will be rd. 4:30 Code for the problem 10:00 Time complexity for Binary tree.
@CodingNinjasIndia
@CodingNinjasIndia 3 жыл бұрын
Join our Coding Ninjas official telegram community here: t.me/codingninjas_official
@rockerboy4184
@rockerboy4184 3 жыл бұрын
Please make your videos in English
Diameter Of Binary Tree ( Basic Approach) - JAVA
19:46
Coding Ninjas
Рет қаралды 26 М.
Diameter Of Binary Tree(Better Approach) - JAVA
15:01
Coding Ninjas
Рет қаралды 23 М.
Молодой боец приземлил легенду!
01:02
МИНУС БАЛЛ
Рет қаралды 1,9 МЛН
FOREVER BUNNY
00:14
Natan por Aí
Рет қаралды 25 МЛН
За кого болели?😂
00:18
МЯТНАЯ ФАНТА
Рет қаралды 3 МЛН
Diameter of a Binary Tree (Code/ Algorithm)
17:15
Vivekanand Khyade - Algorithm Every Day
Рет қаралды 94 М.
L16. Diameter of Binary Tree | C++ | Java
13:47
take U forward
Рет қаралды 378 М.
The first 20 hours -- how to learn anything | Josh Kaufman | TEDxCSU
19:27
Binary search tree - Implementation in C/C++
18:36
mycodeschool
Рет қаралды 1,3 МЛН
How to Construct Binary Tree in C++ ?
8:09
Coding Ninjas
Рет қаралды 26 М.
Data structures: Binary Tree
16:17
mycodeschool
Рет қаралды 1,4 МЛН
Молодой боец приземлил легенду!
01:02
МИНУС БАЛЛ
Рет қаралды 1,9 МЛН