-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree-orders-iterative_2a.c
151 lines (132 loc) · 5.05 KB
/
tree-orders-iterative_2a.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
/*
Returning or passing a struct means copying all the struct's elements, and therefore it's better to return/pass a pointer to the struct instead.
That's what we do here - working with pointers.
*/
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
typedef struct Arrays { // type name, Arrays, is unneccessary
int n;
int *key, *left, *right;
} arrays;
void read_2a(arrays *arrayPtr) {
scanf("%d", &arrayPtr->n);
arrayPtr->key = (int *)calloc(arrayPtr->n, sizeof(int));
if (arrayPtr->key == NULL)
fprintf(stderr, "calloc failed\n");
arrayPtr->left = (int *)calloc(arrayPtr->n, sizeof(int));
if (arrayPtr->left == NULL)
fprintf(stderr, "calloc failed\n");
arrayPtr->right = (int *)calloc(arrayPtr->n, sizeof(int));
if (arrayPtr->right == NULL)
fprintf(stderr, "calloc failed\n");
for (int i = 0; i < arrayPtr->n; i++) {
scanf("%d%d%d", &arrayPtr->key[i], &arrayPtr->left[i], &arrayPtr->right[i]);
}
}
int * inOrder_2a(arrays *arrayPtr) {
int * result;
result = (int *)calloc(arrayPtr->n, sizeof(int));
int resultSize = 0;
int * stack; // stack contains indices of vertices
stack = (int *)calloc(arrayPtr->n, sizeof(int));
int size = 0; // current stack size
int current = 0; // an index - 0 is root
while (1) {
while (current > -1) {
stack[size++] = current;
current = arrayPtr->left[current];
}
if (size) {
current = stack[--size];
result[resultSize++] = arrayPtr->key[current]; // visit()
current = arrayPtr->right[current];
}
else
return result;
}
}
int * preOrder_2a(arrays *arrayPtr) {
int * result;
result = (int *)calloc(arrayPtr->n, sizeof(int));
int resultSize = 0;
int * stack; // stack contains indices of vertices
stack = calloc(arrayPtr->n, sizeof(int));
int size = 0; // current stack size
stack[size++] = 0; // stack contains indices of vertices - 0 is root
int current;
while (size) {
current = stack[--size]; // an index
result[resultSize++] = arrayPtr->key[current]; // visit()
if (arrayPtr->right[current] != -1) {
stack[size++] = arrayPtr->right[current];
}
if (arrayPtr->left[current] != -1) {
stack[size++] = arrayPtr->left[current];
}
}
return result;
}
int * postOrder_2a(arrays *arrayPtr) {
int * result = (int *)calloc(arrayPtr->n, sizeof(int));
int resultSize = 0;
int * stack = (int *)calloc(arrayPtr->n, sizeof(int)); // stack contains indices of vertices
int size = 0; // current stack size
char * boolStack = (char *)calloc(arrayPtr->n, sizeof(char)); // For each element on the node stack, a corresponding value is stored on the bool stack. If this value is true, then we need to pop and visit the node on next encounter.
int boolSize = 0;
char alreadyEncountered; // boolean
int current = 0; // an index - 0 is root
while (current > -1) {
stack[size++] = current;
boolStack[boolSize++] = 0; // false
current = arrayPtr->left[current];
}
while (size) {
current = stack[size - 1];
alreadyEncountered = boolStack[boolSize - 1];
if (alreadyEncountered) {
result[resultSize++] = arrayPtr->key[current]; // visit()
size--;
boolSize--;
}
else {
boolSize--;
boolStack[boolSize++] = 1; // true
current = arrayPtr->right[current];
while (current > -1) {
stack[size++] = current;
boolStack[boolSize++] = 0; // false
current = arrayPtr->left[current];
}
}
}
return result;
}
void print_2a(int n, int * array) {
int i;
for (i = 0; i < n; i++) {
if (i > 0) {
printf(" ");
}
printf("%d", array[i]);
}
printf("\n");
}
int main_2a() {
arrays array; // we create an instance of arrays
arrays *arrayPtr = &array; // a pointer to it - arrayPtr contains the address of the arrays instance array
int *result;
read_2a(arrayPtr);
result = inOrder_2a(arrayPtr);
print_2a((*arrayPtr).n, result);
result = preOrder_2a(arrayPtr);
print_2a(arrayPtr->n, result);
result = postOrder_2a(arrayPtr);
print_2a(arrayPtr->n, result);
free(result);
free(arrayPtr->key);
free(arrayPtr->left);
free(arrayPtr->right);
//scanf("%d", &(*arrayPtr).n); // same as scanf("%d", &array.n); or scanf("%d", &arrayPtr->n);
return 0;
}