-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path175.h
46 lines (42 loc) · 1.06 KB
/
175.h
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
/**
* Definition of TreeNode:
* class TreeNode {
* public:
* int val;
* TreeNode *left, *right;
* TreeNode(int val) {
* this->val = val;
* this->left = this->right = NULL;
* }
* }
*/
class Solution {
public:
/*
* @param root: a TreeNode, the root of the binary tree
* @return: nothing
*/
void invertBinaryTree(TreeNode * root) {
// write your code here
// 递归版
// if(root == nullptr) return;
// TreeNode *rightNode = root->right;
// root->right = root->left;
// root->left = rightNode;
// invertBinaryTree(root->left);
// invertBinaryTree(root->right);
// 非递归版
if(root == nullptr) return;
stack<TreeNode*> s;
s.push(root);
while(!s.empty()){
root = s.top();
s.pop();
TreeNode *l = root->left, *r = root->right;
root->left = r;
root->right = l;
if(l) s.push(l);
if(r) s.push(r);
}
}
};