-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfalileev.c
357 lines (354 loc) · 9.82 KB
/
falileev.c
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
#include <stdio.h>
#include <stdlib.h>
struct node {
int value;
struct node *left;
struct node *right;
};
struct node* tree = NULL;
struct node* searchel = NULL;
struct node* parent = NULL;
struct node *tmp = NULL;
int count(struct node *n);
int countLeaves(struct node* node);
int isBST(struct node* root);
void destroy_tree(struct node* node);
void insert(int value, struct node** node);
void search(struct node** tree, int value);
void search1 (struct node** tree, int value);
void search2 (struct node** tree, int value);
void WriteInFile (struct node **p, FILE* output);
struct node* ReadFromFile (struct node **p, FILE* input);
int _print_t(struct node *tree, int is_left, int offset, int depth, char s[20][255]);
void print_t(struct node *tree);
int commands (int a);
void CreateTree();
FILE* openfile(FILE* file);
int main() {
int command = 0;
while (command != 7)
{
printf("\n1.Создать дерево\n2.Считать из файла\n3.Показать дерево\n4.Сохранить в файл\n5.Информация о дереве\n6.Найти элемент дерева\n7.Выйти\n");
scanf("%d", &command);
if (command == 1)
CreateTree();
else if (command == 2)
{
char *fname=(char *)malloc(20);
printf("Введите название файла, с которого нужно прочитать: ");
scanf("%s",fname);
FILE* input;
input = fopen(fname, "rb");
if(input == NULL)
input = openfile(input);
ReadFromFile(&tree, input);
printf("\n");
fclose(input);
free(fname);
}
else if (command == 3)
print_t(tree);
else if (command == 4)
{
char *fname=(char *)malloc(20);
printf("Введите название файла, в который нужно сохранить: ");
scanf("%s",fname);
FILE* output;
output = fopen(fname, "w");
WriteInFile(&tree, output);
printf("\nСохранено в файл %s", fname);
fclose (output);
free(fname);
}
else if (command == 5)
{
printf("Узлы:%d\n", count(tree));
printf("Ветки:%d\n", countLeaves(tree));
if (isBST(tree))
printf("It BST\n");
else
printf("Not BST\n");
}
else if (command == 6){
int s;
printf("\nВведите значение, которое нужно найти:");
scanf("%d", &s);
searchel = NULL;
search(&tree, s);
if(searchel)
printf("Значение %d не найдено\n", s);
else
printf("Значение %d не найдено\n", s);
}
}
return 0;
}
int count(struct node *n)
{
int c = 1;
if (n == NULL)
return 0;
else
{
c += count(n->left);
c += count(n->right);
return c;
}
}
int isBST(struct node* root)
{
static struct node *prev = NULL;
if (root)
{
if (!isBST(root->left))
return 0;
if (prev != NULL && root->value <= prev->value)
return 0;
prev = root;
return isBST(root->right);
}
return 1;
}
int countLeaves(struct node* node)
{
if(node==NULL) {
return 0;
}
if(node->left == NULL && node->right == NULL) {
return 1;
}
return countLeaves(node->left) + countLeaves(node->right);
}
void insert(int value, struct node** node) {
struct node *temp = NULL;
if(!(*node)) {
temp = (struct node*)malloc(sizeof(struct node));
temp->left = NULL;
temp->right = NULL;
temp->value = value;
*node = temp;
return;
}
else printf("\nКорень уже существует\n");
}
void destroy_tree(struct node* node) {
if (node != 0) {
destroy_tree(node->left);
destroy_tree(node->right);
free(node);
}
}
void search(struct node** tree, int value) {
if(!(*tree)) {
return;
}
if (value == (*tree)->value) {
searchel = *tree;
return;
}
else
search(&((*tree)->left), value);
search(&((*tree)->right), value);
}
void search1 (struct node** tree, int value)
{
if(!(*tree)) {
return;
}
else
{
if (value == (*tree)->value)
{
if((*tree)->left == NULL)
{
searchel = *tree;
parent = tmp;
return;
}
if((*tree)->right == NULL)
{
searchel = *tree;
parent = tmp;
return;
}
else
{
tmp = *tree;
search1(&((*tree)->left), value);
search1(&((*tree)->right), value);
}
}
else
{
tmp = *tree;
search1(&((*tree)->left), value);
search1(&((*tree)->right), value);
}
}
}
void search2 (struct node** tree, int value) {
if(!(*tree))
return;
else
{
if (value == (*tree)->value)
{
if(tmp->left == NULL)
if (tmp->right == *tree)
{
searchel = *tree;
parent = tmp;
return;
}
if((tmp->right == NULL) && (tmp->left == *tree))
{
searchel = *tree;
parent = tmp;
return;
}
else
{
tmp = *tree;
search2(&((*tree)->left), value);
search2(&((*tree)->right), value);
}
}
else
{
tmp = *tree;
search2(&((*tree)->left), value);
search2(&((*tree)->right), value);
}
}
}
void WriteInFile (struct node **p, FILE* output) {
if (!(*p)) {
fprintf(output,"# ");
} else {
fprintf(output ,"%d ",(*p)->value);
WriteInFile(&((*p)->left), output);
WriteInFile(&((*p)->right), output);
}
}
struct node* ReadFromFile (struct node **p, FILE* input) {
char* token;
int in;
token = (char *) malloc (sizeof(char)*10);
if (fscanf(input,"%s", token))
if(token[0] != '#')
{
in = atoi (token);
insert (in, p);
printf("%d ", (*p)->value);
ReadFromFile(&((*p)->left), input);
ReadFromFile(&((*p)->right), input);
}
return *p;
}
int _print_t(struct node *tree, int is_left, int offset, int depth, char s[20][255])
{
int i = 0;
char b[20];
int width = 5;
if (!tree) return 0;
sprintf(b, "(%03d)", tree->value);
int left = _print_t(tree->left, 1, offset, depth + 1, s);
int right = _print_t(tree->right, 0, offset + left + width, depth + 1, s);
for (i = 0; i < width; i++)
s[depth][offset + left + i] = b[i];
if (depth && is_left) {
for ( i = 0; i < width + right; i++)
s[depth - 1][offset + left + width/2 + i] = '-';
s[depth - 1][offset + left + width/2] = '.';
} else if (depth && !is_left) {
for ( i = 0; i < left + width; i++)
s[depth - 1][offset - width/2 + i] = '-';
s[depth - 1][offset + left + width/2] = '.';
}
return left + width + right;
}
void print_t(struct node *tree)
{
int i;
char s[20][255];
for (i = 0; i < 20; i++)
sprintf(s[i], "%80s", " ");
_print_t(tree, 0, 0, 0, s);
for (i = 0; i < 20; i++)
printf("%s\n", s[i]);
}
int commands (int a){
int N, M;
if (a == 1)
{
printf("Введите значение корневого узла:\n");
scanf("%d", &N);
insert(N, &tree);
}
else if (a == 2)
{
printf("Значение N:\n");
scanf("%d", &N);
printf("Потомок M:\n");
scanf("%d", &M);
searchel = NULL;
search1 (&tree, M);
if (searchel != NULL)
{
if (searchel->left == NULL)
insert(N, &(searchel->left));
else if (searchel->right == NULL)
insert(N, &(searchel->right));
else printf("\n%d Имеется два узла", searchel->value);
}
else
printf("Значение не найдено\n");
}
else if (a == 3)
{
printf("Значение N:\n");
scanf("%d", &N);
printf("Ровесник M:\n");
scanf("%d", &M);
searchel = NULL;
parent = NULL;
tmp = tree;
search2 (&tree, M);
if (parent != NULL)
{
if (!parent->left)
insert(N, &(parent->left));
if (!parent->right)
insert(N, &(parent->right));
else printf("\n%d Имеется два узла", parent->value);
}
else
printf ("Не найдено или уже есть два узла");
}
else if (a == 4)
print_t(tree);
else if (a == 5)
printf("\n\n\n\n");
else
printf("Ошибка\n");
return 0;
}
void CreateTree()
{
int a = 0;
while(a != 5)
{
printf("\n1.добавить корневой узел\n2.добавить узел N потомок M\n3.добавить узел N ровесник M\n4.вывести\n5.выйти\n");
scanf("%d", &a);
commands(a);
}
}
FILE* openfile(FILE* file){
char fname [30];
while (file == NULL){
printf("Ошибка открытия файла, попробуйте еще раз:");
scanf("%s", fname);
file=fopen(fname, "rb");
}
return file;
}