-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinaryTreePaths.js
More file actions
37 lines (36 loc) · 855 Bytes
/
binaryTreePaths.js
File metadata and controls
37 lines (36 loc) · 855 Bytes
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
// Given a binary tree, return all root - to - leaf paths.
// Note: A leaf is a node with no children.
// Example:
// Input:
// 1
// / \
// 2 3
// \
// 5
// Output: ["1->2->5", "1->3"]
// Explanation: All root - to - leaf paths are: 1 -> 2 -> 5, 1 -> 3
/**
* Definition for a binary tree node.
* function TreeNode(val) {
* this.val = val;
* this.left = this.right = null;
* }
*/
/**
* @param {TreeNode} root
* @return {string[]}
*/
const binaryTreePaths = (root) => {
let res = []
const pathLoger = (node, prePath = '') => {
if (!node) return
let curPath = prePath ? `${prePath}->${node.val}` : `${node.val}` // make it a string
if (!node.left && !node.right) {
res.push(curPath)
}
pathLoger(node.left, curPath)
pathLoger(node.right, curPath)
}
pathLoger(root)
return res
}