-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path257-binary-tree-paths.cpp
36 lines (34 loc) · 1.04 KB
/
257-binary-tree-paths.cpp
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
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
void dfs(TreeNode* root,vector<int> &temp, vector<string> &v) {
if (root == NULL ) return;
if(root->left == NULL && root->right == NULL) {
string s = "";
for(int i = 0; i < temp.size(); i++) s.append(to_string(temp[i]) + "->");
s.append(to_string(root->val));
v.push_back(s);
return;
}
temp.push_back(root->val);
dfs(root->left,temp, v);
dfs(root->right, temp, v);
temp.pop_back();
}
vector<string> binaryTreePaths(TreeNode* root) {
vector<string> v;
vector<int> temp;
dfs(root,temp, v);
return v;
}
};