-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinaryTreePaths.js
More file actions
35 lines (34 loc) · 1.1 KB
/
binaryTreePaths.js
File metadata and controls
35 lines (34 loc) · 1.1 KB
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
////////////////////////////////////////////////Binary Tree Paths///////////////////////////////////////////
// Given the root of a binary tree, return all root-to-leaf paths in any order.
// A leaf is a node with no children.
// Example 1:
// Input: root = [1,2,3,null,5]
// Output: ["1->2->5","1->3"]
// Example 2:
// Input: root = [1]
// Output: ["1"]
/**
* 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 {string[]}
*/
const binaryTreePaths = function(root) {
if(root === null) return root;
const result = [];
function traverse(root, str){
if(!root.left && !root.right) result.push(str + root.val);
if(root.left) traverse(root.left, str + root.val + "->");
if(root.right) traverse(root.right, str + root.val + "->");
}
traverse(root, "");
return result;
};
// console.log(binaryTreePaths([1,2,3,null,5]));
// console.log(binaryTreePaths([1]));