-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInvert a Binary Tree
57 lines (45 loc) · 1.16 KB
/
Invert a Binary Tree
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
#include <bits/stdc++.h>
/************************************************************
Following is the TreeNode class structure
template <typename T>
class TreeNode {
public:
T data;
TreeNode<T> *left;
TreeNode<T> *right;
TreeNode(T data) {
this->data = data;
left = NULL;
right = NULL;
}
};
************************************************************/
void invert(TreeNode<int>* root, TreeNode<int>* parent, TreeNode<int>* leaf, TreeNode<int>* &ans, bool &flag)
{
if(!root) return;
if(root->data==leaf->data){
root->left=parent;
flag=true;
ans=root;
return;
}
invert(root->left,root,leaf,ans,flag);
if(flag){
root->left=parent;
return;
}
invert(root->right,root,leaf,ans,flag);
if(flag){
if(root->left) root->right=root->left;
else root->right=NULL;
root->left=parent;
return;
}
}
TreeNode<int> * invertBinaryTree(TreeNode<int> *root, TreeNode<int> *leaf)
{
bool flag=false;
TreeNode<int>* ans=NULL;
invert(root,NULL,leaf,ans,flag);
return ans;
}