-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path0543-diameter-of-binary-tree.js
38 lines (36 loc) · 1.05 KB
/
0543-diameter-of-binary-tree.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
* 543. Diameter of Binary Tree
* https://leetcode.com/problems/diameter-of-binary-tree/
* Difficulty: Easy
*
* Given the root of a binary tree, return the length of the diameter of the tree.
*
* The diameter of a binary tree is the length of the longest path between any two nodes in a
* tree. This path may or may not pass through the root.
*
* The length of a path between two nodes is represented by the number of edges between them.
*/
/**
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* @param {TreeNode} root
* @return {number}
*/
var diameterOfBinaryTree = function(root) {
let result = 0;
maxDepth(root);
return result;
function maxDepth(node) {
if (!node) return 0;
const left = maxDepth(node.left);
const right = maxDepth(node.right);
result = Math.max(result, left + right);
return Math.max(left, right) + 1;
}
};