-
Notifications
You must be signed in to change notification settings - Fork 0
/
tree.c
622 lines (520 loc) · 13.9 KB
/
tree.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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
// tree.c
// bst - calculando expressões.
#include "gramcnf.h"
// #importante
// #expressão em ordem!
// Os tokens serão colocados aqui como uma expressão em ordem.
int exp_buffer[32];
int exp_offset=0;
//====================================================================
// Buffer pra fazer conta usando pos order.
int POS_BUFFER[32];
int buffer_offset = 0;
//====================================================================
struct stack
{
int top;
int items[32];
};
struct node
{
int key;
struct node *left;
struct node *right;
};
// ==============================================
static int bst_initialize(void);
static int eval(int *str);
static int my_isdigit(char ch);
static struct node *newNode(int item);
static void inorder(struct node *root);
static void exibirEmOrdem (struct node *root);
static void exibirPreOrdem(struct node *root);
static void exibirPosOrdem (struct node *root);
static struct node *insert( struct node* node, int key );
static void push( struct stack *s, int x );
static int pop (struct stack *s);
static int oper(char c, int opnd1, int opnd2);
// ==============================================
static int my_isdigit(char ch)
{
return ( ch >= '0' && ch <= '9' );
}
// A utility function to create a new BST node.
static struct node *newNode(int item)
{
struct node *tmp;
tmp = (struct node *) malloc( sizeof(struct node) );
if( (void*) tmp == NULL ){
return NULL;
}
tmp->key = (int) item;
tmp->left = NULL;
tmp->right = NULL;
return (struct node *) tmp;
}
// A utility function to do inorder traversal of BST.
static void inorder(struct node *root)
{
if ( (void*) root != NULL )
{
inorder(root->left);
printf("%d \n", root->key);
inorder(root->right);
}
}
// # same as 'inorder()'
// Em ordem a+b.
// Desce até o último pela esquerda,
// não havendo esquerda vai pra direita.
// Visita a esquerda do próximo
// só retorna no último então printf funciona
// mostrando o conteúdo do último
// ai visita a direita do último e desce pela esquerda,
// não havendo esquerda vai pra direita.
static void exibirEmOrdem (struct node *root)
{
if ( (void*) root != NULL )
{
exibirEmOrdem (root->left);
printf("%d ", root->key);
exibirEmOrdem (root->right);
}
}
// Pré-ordem +ab.
// Imprime o conteúdo
// desce até o último pela esquerda
// visita a direita e desce até o último pela esquerda.
static void exibirPreOrdem(struct node *root)
{
if ((void*)root != NULL)
{
printf("%d ", root->key);
exibirPreOrdem(root->left);
exibirPreOrdem(root->right);
}
}
// Pós-ordem ab+.
// #importante
// Exibe em níveis. de baixo para cima.
// desce até o ultimo pela esquerda
// visita o da direita e imprime;
static void exibirPosOrdem (struct node *root)
{
if ((void*)root != NULL)
{
exibirPosOrdem(root->left);
exibirPosOrdem(root->right);
printf("%d ", root->key);
//?? # what is that?
if( buffer_offset < 0 ||
buffer_offset > 32 )
{
printf("exibirPosOrdem: buffer_offset\n");
return;
}
// #importante
// Colocar num buffer pra usar no cálculo
// isso simula uma digitação
POS_BUFFER[buffer_offset] =
(int) (root->key + '0');
// next
buffer_offset++;
};
}
// An utility function to insert
// a new node with given key in BST.
static struct node *insert( struct node* node, int key )
{
// If the tree is empty, return a new node.
if ( (void*) node == NULL ){
return (struct node *) newNode(key);
}
// Otherwise, recur down the tree.
// Se for menor, inclui na esquerda.
if (key < node->key){
node->left = (struct node *) insert(node->left, key);
// Se for maior, inclui na direita.
}else if (key > node->key){
node->right = (struct node *) insert(node->right, key);
};
// return the (unchanged) node pointer.
return (struct node *) node;
}
/*
bst_main:
Called by tree_eval();
Inicializa árvore binária.
Ela pega uma expressão que está em um buffer e
prepara o buffer POS_BUFFER para eval usar.
Driver Program to test above functions
C program to demonstrate insert operation in binary search tree
Let us create following BST.
-
/ \
+ *
/ \ / \
4 3 2 5
*/
//4+3 - 2*5 = 12
//==================================================
static int bst_initialize(void)
{
// Inicializa árvore binária.
buffer_offset = 0;
struct node *root = NULL;
register int i=0;
int buffer1[32];
int buffer2[32];
int buffer1_offset=0;
int buffer2_offset=0;
int c=0;
printf ("bst_main:\n");
printf ("for\n");
// #IMPORTANTE:
// ESSE É O BUFFER USADO PARA COLOCAR A EXPRESSÃO EM ORDEM
// VAMOS FAZER ELE GLOBAL PARA SER PREENCHIDO PELOS TOKENS.
//int exp[] = { 4, '+', 3, '-', 2, '*', 5, '?' };
// Colocamos nos buffers em ordem.
for (
i=0;
(c = exp_buffer[i]) != '?'; // Se ainda não chegou ao fim.
i++ )
{
// Numbers
if ( c >= 0 && c <= 9 ){
//printf(">"); //#debug
// dígito
buffer1[buffer1_offset] = (int) c;
buffer1_offset++;
// Operators
}else{
//printf("$"); //#debug
// operadores
buffer2[buffer2_offset] = (int) c;
buffer2_offset++;
}
};
// Visualizar os buffer,
// pra depois manipular eles.
buffer1[buffer1_offset] = (int) '?';
buffer2[buffer2_offset] = (int) '?';
// ===================================================================
// #todo:
// NESSA HORA TEM QUE AJUSTAR A
// PRECEDÊNCIA DOS OPERADORES
// Inserindo root.
root = insert(root,'?');
// Operadores +-*
for (
i=0;
(c = buffer2[i]) != '?'; i++ )
{
//if ( c>= 0 && c<= 9 )
//{
// printf ("%d", c);
// continue;
//}
printf ("%c", c);
insert(root,buffer2[i]);
};
// Ajustando para o último válido.
buffer1_offset--;
//for ( i=0; (c = buffer1[i]) != '?'; i++ )
for (
i=buffer1_offset;
(c = buffer1[i]);
i-- )
{
c = buffer1[i]; // Redundante
if ( c>= 0 && c<= 9 )
{
printf ("%d", c);
insert ( root, c );
//continue;
}
//printf ("%c", c);
};
// #OK
// Nos buffers estão na mesma ordem que na expressão.
// agora vamos inserir na ordem inversa dos buffers.
// ### root ##
//insert 111.
// É um finalizador, representa o igual
//depois vamos usar o igual =
// x = 4+3 - 2*5
//root = insert ( root, '?' );
//os operadores precisar sem inseridos na ordem da expressão.
//insert(root, '+'); //
//insert(root, '-'); //
//insert(root, '*'); //
//insert(root, 5); //
//insert(root, 2); //
//insert(root, 3); //
//insert(root, 4); //
//
// Print
//
printf(":: em ordem: \n");
exibirEmOrdem(root);
printf(":: pre ordem: \n");
exibirPreOrdem(root);
printf(":: pos ordem: \n");
exibirPosOrdem(root);
return 0;
}
//====================================================================
static void push( struct stack *s, int x )
{
if( (void*) s == NULL ){
printf("push: [FAIL] s\n");
exit(1);
}
if ( s->top > 32 ){
printf("Stack Overflow!\n");
return;
}else{
s->items[ ++s->top ] = x;
};
}
static int pop (struct stack *s)
{
if( (void*) s == NULL ){
printf("pop: [FAIL] s\n");
exit(1);
}
if ( s->top == -1){
printf("Stack Underflow !\n");
return 0; //??
}else{
return ( s->items[ s->top-- ] );
};
}
static int oper(char c, int opnd1, int opnd2)
{
switch (c){
//case '*':
case 90:
return (opnd1*opnd2);
break;
//case '+':
case 91:
return (opnd1+opnd2);
break;
//case '-':
case 93:
return (opnd1-opnd2);
break;
//case '/':
case 95:
return (opnd1/opnd2);
break;
//#todo
case '^':
return 0; //return(pow(opnd1,opnd2));
break;
//...
default:
printf("oper: Invalid operator! {%d}\n", c);
return 0;
break;
};
}
static int eval(int *str)
{
register int i=0;
int opnd1=0;
int opnd2=0;
int val=0;
char c=0;
struct stack stk;
stk.top = -1;
printf("\n");
printf("eval:\n");
//for ( i=0; (c = str[i]) != '?'; i++ )
for (
i=0;
(c = str[i]) != 111;
i++ )
{
// Push numbers.
if ( c>='0' && c<='9' ){
push( &stk, (int)( c - '0' ) );
// Quando encontrar um operador, Faz push do result.
// O problema é a ordem em que os operandos aparecem
// o último é a raiz.
// e aqui a o operando raiz aparece no meio da expressão.
}else{
opnd2 = pop(&stk);
opnd1 = pop(&stk);
val = oper( c, opnd1, opnd2 );
// Push result.
push( &stk, val );
}
}
// O resultado é o que sobrou na pilha.
return ( pop(&stk) );
}
// tree_eval:
// Calcula a expressão e retorna o valor.
// #todo:
// prepara o buffer contendo a expressão em ordem.
// pra isso precisamos pegar os tokens e colocar no buffer.
// #exemplo
// tem que pegar os tokens e colocar assim no buffer.
// +os números são números mesmo
// +os operadores são chars ou strings.
// tem que finalizar com '?'
// exp[] = { 4, '+', 3, '-', 2, '*', 5, '?' };
// #todo
// vamos copiar a função no parser que pega os tokens de expressões.
// mas por enquanto só os operadores básicos.
unsigned long tree_eval(void)
{
// Global function.
// Pegamos os próximos tokens e colocamos no buffer exp_buffer[].
// Initializa a árvore binária chamando bst_initialize(),
// os dados são transferidos para o buffer POS_BUFFER[].
// Calcula o resultado chamando eval();
int running = 1;
int State = 1;
register int c=0;
int j=0;
int v=0;
printf ("tree_eval:\n");
while (running == 1){
c = yylex();
// EOF was found
if (c == TK_EOF){
printf ("tree_eval: #error EOF in line %d\n", lexer_currentline);
exit(1);
}
// ';' was found.
// End of statement.
if (c == TK_SEPARATOR)
{
if ( strncmp ( (char *) real_token_buffer, ";", 1 ) == 0 )
{
printf("tree_eval: ';' was found!\n");
goto done;
}
}
switch (State){
// State1: Numbers.
case 1:
switch (c){
// Constants: Números ou separadores.
case TK_CONSTANT:
exp_buffer[exp_offset] = (int) atoi(real_token_buffer);
exp_offset++;
// Depois de um número espera-se
// um operador ou um separador.
State=2;
break;
// ';' separador no caso de return void.
// para quando a expressão é depois do return.
case TK_SEPARATOR:
if ( strncmp( (char *) real_token_buffer, ";", 1 ) == 0 )
{
goto done;
}
//if ( strncmp( (char *) real_token_buffer, ")", 1 ) == 0 )
//{}
// #todo
// Temos que tratar as aberturas e fechamentos (),{}
default:
printf("tree_eval: State1 default\n");
exit(1);
break;
}
break;
// State2: Operators and separators.
case 2:
switch (c){
// Operators
case '+': case '-': case '*': case '/':
case '&': case '|':
case '<': case '>':
case '%':
case '^':
case '!':
case '=':
exp_buffer[exp_offset] = (int) c;
exp_offset++;
// Depois do operador esperamos
// um número ou um separador ')' ou
// finalizador provisório?.
State=1;
break;
// Separators
// ')' provisório para terminar a expressão,
// daí incluimos o finalizador provisório '?'
case TK_SEPARATOR:
// ')'
if ( strncmp( (char *) real_token_buffer, ")", 1 ) == 0 )
{
exp_buffer[exp_offset] = (int) '?';
exp_offset++;
goto do_bst; // #done
}
// ';'
if ( strncmp( (char *) real_token_buffer, ";", 1 ) == 0 )
{
printf("tree_eval: ';' was found\n");
exp_buffer[exp_offset] = (int) '?';
exp_offset++;
goto do_bst; // #done
}
break;
// State2 default
default:
break;
}
break;
default:
printf("tree_eval: Default State\n");
break;
};
}; // While end.
do_bst:
// #debug
// Visualizando o buffer.
printf("\n");
printf("tree_eval: do_bst: show buffer:\n");
for (j=0; j<32; j++){
v = exp_buffer[j];
if ( v >= 0 && v <= 9 ){
printf("exp_buffer: %d", exp_buffer[j]);
}else{
printf("exp_buffer: %c", exp_buffer[j]);
}
};
//#debug
//hang
//printf("do_bst: *debug breakpoint");
//while(1){}
//==================================================
// Inicializa árvore binária.
// ela pega uma expressão que está em um buffer e
// prepara o buffer POS_BUFFER para eval usar.
bst_initialize();
//#debug
//ok funcionou
//printf ("\n tree_eval: result={%d} \n", eval ( (int*) &POS_BUFFER[0] ) );
//#debug
//hang
//printf("*debug breakpoint");
//while(1){}
//
// Eval
//
unsigned long ret_val=0;
ret_val = (unsigned long) eval( (int *) &POS_BUFFER[0] );
printf("result: %d\n",ret_val);
return (unsigned long) ret_val;
done:
return (unsigned long) ret_val;
}
//
// End.
//