-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrbtree.c
executable file
·189 lines (169 loc) · 4.72 KB
/
rbtree.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
#include <stdio.h>
#include <stdlib.h>
#define RED 1
#define BLACK 2
#define SZER_EKR 80
#define IL_POZ 5
char wydruk[IL_POZ+1][SZER_EKR];
struct wezel {
struct wezel *rodzic;
struct wezel *lewy;
struct wezel *prawy;
int kolor;
int klucz;
};
int pierwszy = 1;
struct wezel *NIL;
struct wezel *drzewo;
void rotate_left(struct wezel *t) {
struct wezel *y = t->prawy;
struct wezel *x = t;
x->prawy = y->lewy;
if (y->lewy != NIL) y->lewy->rodzic = x;
y->rodzic = x->rodzic;
if (x->rodzic == NIL) drzewo = y;
else if (x == x->rodzic->lewy) x->rodzic->lewy = y;
else x->rodzic->prawy = y;
y->lewy = x;
x->rodzic = y;
}
void rotate_right(struct wezel *y) {
struct wezel *x = y->lewy;
y->lewy = x->prawy;
if (x->prawy != NIL) x->prawy->rodzic = y;
x->rodzic = y->rodzic;
if (y->rodzic == NIL) drzewo = x;
else if (y == y->rodzic->prawy) y->rodzic->prawy = x;
else y->rodzic->lewy = x;
x->prawy = y;
y->rodzic = x;
}
void rb_insert_fix(struct wezel *z) {
struct wezel *y; // = (struct wezel*)malloc(sizeof(struct wezel));
while (z->rodzic != NIL && z->rodzic->kolor == RED) {
if (z->rodzic == z->rodzic->rodzic->lewy) {
y = z->rodzic->rodzic->prawy;
if (y->kolor == RED) {
z->rodzic->kolor = BLACK;
y->kolor = BLACK;
z->rodzic->rodzic->kolor = RED;
z = z->rodzic->rodzic;
} else {
if (z == z->rodzic->prawy) {
z = z->rodzic;
rotate_left(z);
}
z->rodzic->kolor = BLACK;
z->rodzic->rodzic->kolor = RED;
rotate_right(z->rodzic->rodzic);
}
} else {
y = z->rodzic->rodzic->lewy;
if (y->kolor == RED) {
z->rodzic->kolor = BLACK;
y->kolor = BLACK;
z->rodzic->rodzic->kolor = RED;
z = z->rodzic->rodzic;
} else {
if (z == z->rodzic->lewy) {
z = z->rodzic;
rotate_right(z);
}
z->rodzic->kolor = BLACK;
z->rodzic->rodzic->kolor = RED;
rotate_left(z->rodzic->rodzic);
}
}
drzewo->kolor = BLACK;
}
}
void rb_insert(int n) {
struct wezel *z = (struct wezel*)malloc(sizeof(struct wezel));
z->klucz = n;
struct wezel *y = NIL;
struct wezel *x = drzewo;
while (x != NIL) {
y = x;
if (z->klucz < x->klucz) x = x->lewy;
else x = x->prawy;
}
z->rodzic = y;
if (y == NIL) drzewo = z;
else if (z->klucz < y->klucz) y->lewy = z;
else y->prawy = z;
z->lewy = NIL;
z->prawy = NIL;
z->kolor = RED;
rb_insert_fix(z);
}
void wstaw() {
int n;
printf("Podaj element: "); scanf("%i",&n);
if (pierwszy == 1) {
drzewo->klucz = n;
drzewo->rodzic = NIL;
drzewo->lewy = NIL;
drzewo->prawy = NIL;
drzewo->kolor = BLACK;
pierwszy = 0;
} else rb_insert(n);
}
void drukujost(struct wezel *w, int l, int p,int poziom){
int srodek = (l+p)/2;
if (w==NULL) return;
wydruk[poziom][srodek]='*';
}
void drukujwew(struct wezel *w, int l, int p,int poziom){
int srodek = (l+p)/2;
int i,dl;
char s[9];
if (w==NIL) return;
if (w->kolor == RED) dl=sprintf(s,"%dR",w->klucz);
else dl=sprintf(s,"%dB",w->klucz);
for (i=0;i<dl;i++)
wydruk[poziom][srodek-dl/2+i]=s[i];
if (++poziom<IL_POZ){
drukujwew(w->lewy,l,srodek,poziom) ;
drukujwew(w->prawy,srodek+1,p,poziom) ;
}
else {
drukujost(w->lewy,l,srodek,poziom) ;
drukujost(w->prawy,srodek+1,p,poziom) ;
}
}
void drukuj(struct wezel *w){
int j,i;
for (i=0;i<=IL_POZ;i++)
for (j=0;j<SZER_EKR;j++)
wydruk[i][j] = ' ';
drukujwew(w,0,SZER_EKR,0);
for (i=0;i<=IL_POZ;i++){
for (j=0;j<=SZER_EKR;j++)
putchar(wydruk[i][j]);
printf("\n");
}
}
int main() {
NIL = (struct wezel*)malloc(sizeof(struct wezel));
NIL->kolor = BLACK;
NIL->klucz = 0;
NIL->rodzic = NULL;
NIL->lewy = NULL;
NIL->prawy = NULL;
drzewo = (struct wezel*)malloc(sizeof(struct wezel));
int pierwszy = 1;
int wybor;
while (1) {
printf("Menu:\n");
printf("0 - wstaw element.\n");
printf("1 - wydrukuj drzewo.\n");
printf("2 - wyjdz.\n");
printf("Wybor: "); scanf("%i",&wybor);
switch (wybor) {
case 0: wstaw(drzewo); break;
case 1: drukuj(drzewo); break;
case 2: return 0; break;
}
}
return 0;
}