-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path257. Binary Tree Paths
83 lines (70 loc) · 2.01 KB
/
257. Binary Tree Paths
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
public List<String> binaryTreePaths(TreeNode root) {
String path="";
List<String> result=new ArrayList<String>();
if(root==null)
return result;
helper(path,root,result);
return result;
}
private void helper(String path,TreeNode root,List<String>result){
if(root.left==null&&root.right==null){
path+=""+root.val;
result.add(path);
return;
}
if(root.left!=null)
{path+=""+root.val+"->";
helper(path,root.left,result);
}
if(root.right!=null){
path+=""+root.val+"->";//path因为是传过来的实参,在这个函数中是全局变量。
//所以你想当于把root.val->加了两次,对于root左右节点都不是null的。
helper(path,root.right,result);
}
}
}
正确答案
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
public List<String> binaryTreePaths(TreeNode root) {
String path="";
List<String> result=new ArrayList<String>();
if(root==null)
return result;
helper(path,root,result);
return result;
}
private void helper(String path,TreeNode root,List<String>result){
if(root.left==null&&root.right==null){
path+=""+root.val;
result.add(path);
return;
}
path+=""+root.val+"->";
if(root.left!=null)
{
helper(path,root.left,result);
}
if(root.right!=null){
helper(path,root.right,result);
}
}
}