[LeetCode][JavaScript]Binary Tree Paths

Binary Tree Paths

Given a binary tree, return all root-to-leaf paths.

For example, given the following binary tree:

 

   1
 /   \
2     3
 \
  5

 

All root-to-leaf paths are:

["1->2->5", "1->3"]

https://leetcode.com/problems/binary-tree-paths/

 

 


 

 

树的遍历,一个递归搞定。

每个节点看看左右还有没有孩子,如果有就递归进去,否则是叶子节点,加入结果数组。

每次都加上"->value",要加入结果数组的时候去掉最前面的"->"。

两道类似的题:

Path Sum : http://www.cnblogs.com/Liok3187/p/4869521.html

Path Sum II : http://www.cnblogs.com/Liok3187/p/4869538.html

 1 /**
 2  * Definition for a binary tree node.
 3  * function TreeNode(val) {
 4  *     this.val = val;
 5  *     this.left = this.right = null;
 6  * }
 7  */
 8 /**
 9  * @param {TreeNode} root
10  * @return {string[]}
11  */
12 var binaryTreePaths = function(root) {
13     var res = [];
14     if(root && root.val !== undefined){
15         getPaths(root, "");
16     }
17     return res;
18 
19     function getPaths(node, path){
20         var isLeaf = true;
21         if(node.left){
22             isLeaf = false;
23             getPaths(node.left, path + "->" + node.val);
24         }
25         if(node.right){
26             isLeaf = false;
27             getPaths(node.right, path + "->" + node.val);
28         }
29         if(isLeaf){
30             var tmp = path + "->" + node.val;
31             res.push(tmp.substring(2, tmp.length));
32         }
33     }
34 };

 

 

posted @ 2015-08-17 00:24  `Liok  阅读(772)  评论(0编辑  收藏  举报