-
Notifications
You must be signed in to change notification settings - Fork 0
/
1212.cpp
157 lines (150 loc) · 3.36 KB
/
1212.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#include <iostream>
#include <cstring>
#include <stdio.h>
using namespace std;
int tree[100005][4] = {0};
template <class elemType>
class seqQueue
{
private:
elemType *elem;
int maxSize;
int front, rear;
void doubleSpace();
public:
seqQueue(int size = 10)
{
elem = new elemType[size];
maxSize = size; front = rear = 0;
}
~seqQueue() {}
bool isEmpty() {return front == rear;}
void enQueue(const elemType &x) ;
elemType deQueue();
elemType getHead()
{return elem[(front + 1) % maxSize];}
};
template <class elemType>
void seqQueue<elemType>::doubleSpace()
{
elemType *tmp =elem;
elem = new elemType[2 * maxSize];
for (int i = 1; i < maxSize; ++i)
elem[i] = tmp[(front + i) % maxSize];
front = 0; rear = maxSize - 1;
maxSize *= 2;
delete tmp;
}
template <class elemType>
void seqQueue<elemType>::enQueue(const elemType &x)
{
if ((rear + 1) % maxSize == front) doubleSpace();
rear = (rear + 1) % maxSize;
elem[rear] = x;
}
template <class elemType>
elemType seqQueue<elemType>::deQueue()
{
front = (front + 1) % maxSize;
return elem[front];
}
class Binary_tree{
private:
struct node{
node *left,*right;
int data,index;
node():left(NULL),right(NULL){}
node(int n,int m,node *L = NULL,node *R = NULL)
{
data = n;
index = m;
left = L;
right = R;
}
~node(){}
};
public:
node *root;
void clear(node *t)
{
if(t->left !=NULL)
clear(t->left);
if(t->right!=NULL)
clear(t->right);
delete t;
}
Binary_tree(){
int n;
cin>>n;
for(int i=1;i<=n;++i)
{
scanf("%d%d%d",&tree[i][0],&tree[i][1],&tree[i][3]);
tree[tree[i][0]][2] = i;
tree[tree[i][1]][2] = i;
}
int root_index;
for(int i=1;i<=n;++i)
{
if(tree[i][2])
{
root_index = i;
break;
}
}
while(tree[root_index][2])
{
root_index = tree[root_index][2];
}
seqQueue<node *> que;
node *tmp;
root = new node(tree[root_index][3],root_index);
que.enQueue(root);
while(!que.isEmpty())
{
tmp = que.getHead();
que.deQueue();
int left_index = tree[tmp->index][0];
int right_index = tree[tmp->index][1];
if(left_index!=0)
{
tmp->left = new node(tree[left_index][3],left_index);
que.enQueue(tmp->left);
}
if(right_index!=0)
{
tmp->right = new node(tree[right_index][3],right_index);
que.enQueue(tmp->right);
}
}
}
~Binary_tree()
{
clear(root);
}
void display()
{
seqQueue<node *> a;
a.enQueue(root);
while(!a.isEmpty())
{
node *p = a.getHead();
a.deQueue();
cout<<p->data<<' ';
if(p->left)
a.enQueue(p->left);
if(p->right)
a.enQueue(p->right);
}
}
};
int main()
{
Binary_tree t;
t.display();
//bool res = t.isCBT();
// if(res)
// cout<<'Y';
// else
// cout<<'N';
return 0;
}