forked from kamyu104/LintCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
invert-binary-tree.cpp
89 lines (85 loc) · 2.12 KB
/
invert-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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// Time: O(n)
// Space: O(h)
/**
* Definition of TreeNode:
* class TreeNode {
* public:
* int val;
* TreeNode *left, *right;
* TreeNode(int val) {
* this->val = val;
* this->left = this->right = NULL;
* }
* }
*/
// Time: O(n)
// Space: O(w), w is the max number of nodes of the levels.
// BFS solution.
class Solution {
public:
/**
* @param root: a TreeNode, the root of the binary tree
* @return: nothing
*/
void invertBinaryTree(TreeNode *root) {
if (root != nullptr) {
queue<TreeNode*> nodes;
nodes.emplace(root);
while (!nodes.empty()) {
auto node = nodes.front();
nodes.pop();
swap(node->left, node->right);
if (node->left != nullptr) {
nodes.emplace(node->left);
}
if (node->right != nullptr) {
nodes.emplace(node->right);
}
}
}
}
};
// Time: O(n)
// Space: O(h)
// Stack solution.
class Solution2 {
public:
/**
* @param root: a TreeNode, the root of the binary tree
* @return: nothing
*/
void invertBinaryTree(TreeNode *root) {
if (root != nullptr) {
stack<TreeNode*> nodes;
nodes.emplace(root);
while (!nodes.empty()) {
auto node = nodes.top();
nodes.pop();
swap(node->left, node->right);
if (node->left != nullptr) {
nodes.emplace(node->left);
}
if (node->right != nullptr) {
nodes.emplace(node->right);
}
}
}
}
};
// Time: O(n)
// Space: O(h)
// DFS, Recursive solution.
class Solution3 {
public:
/**
* @param root: a TreeNode, the root of the binary tree
* @return: nothing
*/
void invertBinaryTree(TreeNode *root) {
if (root != nullptr) {
swap(root->left, root->right);
invertBinaryTree(root->left);
invertBinaryTree(root->right);
}
}
};