forked from shuboc/LeetCode-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
boundary-of-binary-tree.cpp
65 lines (60 loc) · 1.57 KB
/
boundary-of-binary-tree.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Time: O(n)
// Space: O(h)
/**
* 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<int> boundaryOfBinaryTree(TreeNode* root) {
if (!root) {
return {};
}
vector<int> nodes;
nodes.emplace_back(root->val);
leftBoundary(root->left, &nodes);
leaves(root->left, &nodes);
leaves(root->right, &nodes);
rightBoundary(root->right, &nodes);
return nodes;
}
private:
void leftBoundary(TreeNode *root, vector<int> *nodes) {
if (!root || (!root->left && !root->right)) {
return;
}
nodes->emplace_back(root->val);
if (!root->left) {
leftBoundary(root->right, nodes);
} else {
leftBoundary(root->left, nodes);
}
}
void rightBoundary(TreeNode *root, vector<int> *nodes) {
if (!root || (!root->right && !root->left)) {
return;
}
if (!root->right) {
rightBoundary(root->left, nodes);
} else {
rightBoundary(root->right, nodes);
}
nodes->emplace_back(root->val);
}
void leaves(TreeNode *root, vector<int> *nodes) {
if (!root) {
return;
}
if (!root->left && !root->right) {
nodes->emplace_back(root->val);
return;
}
leaves(root->left, nodes);
leaves(root->right, nodes);
}
};