-
Notifications
You must be signed in to change notification settings - Fork 1
/
Q9_binary_tree_paths.cpp
50 lines (41 loc) · 1.17 KB
/
Q9_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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// 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"]
#include<bits/stdc++.h>
using namespace std;
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 {
private:
void paths(TreeNode* root, string curr, vector<string>& ans) {
if(!root) return;
if(!root->left && !root->right) {
curr += to_string(root->val);
ans.push_back(curr);
return;
}
curr += to_string(root->val);
curr += "->";
paths(root->left, curr, ans);
paths(root->right, curr, ans);
}
public:
vector<string> binaryTreePaths(TreeNode* root) {
vector<string> ans;
paths(root, "", ans);
return ans;
}
};
// Time Complexity : O(n)
// Space Complexity : O(n)