-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBinary_Tree_Paths.h
More file actions
49 lines (42 loc) · 1.02 KB
/
Binary_Tree_Paths.h
File metadata and controls
49 lines (42 loc) · 1.02 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*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"]
*/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
vector<string> binaryTreePaths(TreeNode* root) {
if(root == NULL) return result;
binaryTreePaths_helper(root, "");
return result;
}
void binaryTreePaths_helper(TreeNode* root, string ans)
{
if(root == NULL) return;
if(root->left == NULL && root->right == NULL)
{
ans = ans + to_string(root->val);
result.push_back(ans);
}
else
ans = ans + to_string(root->val) + "->";
binaryTreePaths_helper(root->left, ans);
binaryTreePaths_helper(root->right, ans);
}
private:
vector<string> result;
};