Interview Problem: How to Calculate the Diameter of a Binary Tree in C++ ( Basic Approach)

  Рет қаралды 25,294

Coding Ninjas

Coding Ninjas

Күн бұрын

Пікірлер: 8
@CodingNinjasIndia
@CodingNinjasIndia 3 жыл бұрын
Join our Coding Ninjas official telegram community here: t.me/codingninjas_official
@uvraysyt_
@uvraysyt_ 3 жыл бұрын
Amazing
@shubhendurajput1360
@shubhendurajput1360 5 жыл бұрын
Thanks for explaining it so well. Please fix your title. This video should be categorized under Better Approach rather than Basic.
@sourav3751
@sourav3751 3 жыл бұрын
Very Well Explained Sir👌👌
@PrashantMishra-nk9nl
@PrashantMishra-nk9nl 3 жыл бұрын
I wonder only 4 comments till now!!
@derilraju2106
@derilraju2106 2 жыл бұрын
Python class Solution: def diameterOfBinaryTree(self, root: Optional[TreeNode]) -> int: def diameter(root): if not root: return 0,0 ld, lh = diameter(root.left) rd, rh = diameter(root.right) d = max(lh+rh,max(ld,rd)) h = 1 + max(lh,rh) return d,h return diameter(root)[0]
@abhaypatil1252
@abhaypatil1252 3 жыл бұрын
Change the title to better approach instead of basic approach.
@aparna8338
@aparna8338 4 жыл бұрын
Pls do courses in English also
Diameter Of Binary Tree(Better Approach) - JAVA
15:01
Coding Ninjas
Рет қаралды 23 М.
How to Find the Diameter Of Binary Tree(Better Approach) - C++
18:25
Thank you Santa
00:13
Nadir Show
Рет қаралды 35 МЛН
FOREVER BUNNY
00:14
Natan por Aí
Рет қаралды 31 МЛН
Interview Problem: How to Build A Segment Tree?
16:13
Coding Ninjas
Рет қаралды 23 М.
How to Construct Binary Tree in C++ ?
8:09
Coding Ninjas
Рет қаралды 26 М.
Best Algorithms for Programming Interviews: Huffman Algorithm.
19:52
Construct Binary Tree From PreOrder And Inorder (Code) - C++
16:58
Coding Ninjas
Рет қаралды 56 М.
How to Use Hashmaps in C++?| Interview Preparation Series
13:34
Coding Ninjas
Рет қаралды 49 М.
Master Pointers and Arrays  in C++
20:02
Coding Ninjas
Рет қаралды 4,7 М.
Strongly Connected Components: Kosarajus Algorithm
19:25
Coding Ninjas
Рет қаралды 15 М.
Thank you Santa
00:13
Nadir Show
Рет қаралды 35 МЛН