-
Notifications
You must be signed in to change notification settings - Fork 71
/
Tree_compare.cpp
83 lines (70 loc) · 1.77 KB
/
Tree_compare.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
#include <iostream>
#include <queue>
#include <vector>
using namespace std;
template <typename T>
class TreeNode {
public:
T data;
vector<TreeNode<T>*> children;
TreeNode(T data) { this->data = data; }
~TreeNode() {
for (int i = 0; i < children.size(); i++) {
delete children[i];
}
}
};
bool areIdentical(TreeNode<int> *root1, TreeNode<int> * root2)
{
if(root1 == NULL && root2 == NULL)
{
return false;
}
if(root1->data == root2->data)
{
return true;
}
int x = root1->children.size();
int y = root2->children.size();
if(x ==y)
{
for(int i=0;i<x;i++)
{
if(areIdentical(root1->children[i],root2->children[i]))
{
return true;
}
return false;
}
}
else
{
return false;
}
}
TreeNode<int>* takeInputLevelWise() {
int rootData;
cin >> rootData;
TreeNode<int>* root = new TreeNode<int>(rootData);
queue<TreeNode<int>*> pendingNodes;
pendingNodes.push(root);
while (pendingNodes.size() != 0) {
TreeNode<int>* front = pendingNodes.front();
pendingNodes.pop();
int numChild;
cin >> numChild;
for (int i = 0; i < numChild; i++) {
int childData;
cin >> childData;
TreeNode<int>* child = new TreeNode<int>(childData);
front->children.push_back(child);
pendingNodes.push(child);
}
}
return root;
}
int main() {
TreeNode<int>* root1 = takeInputLevelWise();
TreeNode<int>* root2 = takeInputLevelWise();
cout << (areIdentical(root1, root2) ? "true" : "false");
}