mirror of
git://projects.qi-hardware.com/wernermisc.git
synced 2024-11-22 09:17:31 +02:00
qpkg: simplify jrb_delete_node and more whitespace cleanup
- jrb.c (recolor, jrb_delete_node, jrb_nblack, jrb_free_tree): add space to while(... - jrb.c (jrb_delete_node): flatten deletion of internal node - rbtest.c (main): add test of jrb_delete_node
This commit is contained in:
parent
5a422a470d
commit
a463773c12
31
qpkg/jrb.c
31
qpkg/jrb.c
@ -272,7 +272,7 @@ static void recolor(JRB n)
|
||||
JRB p, gp, s;
|
||||
int done = 0;
|
||||
|
||||
while(!done) {
|
||||
while (!done) {
|
||||
if (isroot(n)) {
|
||||
setblack(n);
|
||||
return;
|
||||
@ -360,8 +360,8 @@ static void single_rotate(JRB y, int l)
|
||||
|
||||
void jrb_delete_node(JRB n)
|
||||
{
|
||||
JRB s, p, gp;
|
||||
char ir;
|
||||
JRB s, p, gp, x, z;
|
||||
char ir, il;
|
||||
|
||||
if (isint(n)) {
|
||||
fprintf(stderr, "Cannot delete an internal node: %p\n", n);
|
||||
@ -430,7 +430,7 @@ void jrb_delete_node(JRB n)
|
||||
n = s;
|
||||
p = n->parent;
|
||||
s = sibling(n);
|
||||
while(isblack(p) && isblack(s) && isint(s) &&
|
||||
while (isblack(p) && isblack(s) && isint(s) &&
|
||||
isblack(s->flink) && isblack(s->blink)) {
|
||||
setred(s);
|
||||
n = p;
|
||||
@ -447,12 +447,8 @@ void jrb_delete_node(JRB n)
|
||||
s = sibling(n);
|
||||
}
|
||||
|
||||
{
|
||||
JRB x, z; char il;
|
||||
|
||||
if (isext(s)) {
|
||||
fprintf(stderr,
|
||||
"DELETION ERROR: sibling not internal\n");
|
||||
fprintf(stderr, "DELETION ERROR: sibling not internal\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
@ -468,7 +464,9 @@ void jrb_delete_node(JRB n)
|
||||
else
|
||||
setblack(s);
|
||||
setblack(p);
|
||||
} else if (isblack(x)) { /* Recoloring only (2.3c) */
|
||||
return;
|
||||
}
|
||||
if (isblack(x)) { /* Recoloring only (2.3c) */
|
||||
if (isred(s) || isblack(p)) {
|
||||
fprintf(stderr,
|
||||
"DELETION ERROR: 2.3c not quite right\n");
|
||||
@ -477,19 +475,18 @@ void jrb_delete_node(JRB n)
|
||||
setblack(p);
|
||||
setred(s);
|
||||
return;
|
||||
} else if (isred(p)) { /* 2.3d */
|
||||
}
|
||||
if (isred(p)) { /* 2.3d */
|
||||
single_rotate(s, il);
|
||||
single_rotate(p, !il);
|
||||
setblack(x);
|
||||
setred(s);
|
||||
return;
|
||||
} else { /* 2.3e */
|
||||
}
|
||||
/* 2.3e */
|
||||
single_rotate(s, il);
|
||||
single_rotate(p, !il);
|
||||
setblack(x);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -503,7 +500,7 @@ int jrb_nblack(JRB n)
|
||||
exit(1);
|
||||
}
|
||||
nb = 0;
|
||||
while(!ishead(n)) {
|
||||
while (!ishead(n)) {
|
||||
if (isblack(n)) nb++;
|
||||
n = n->parent;
|
||||
}
|
||||
@ -537,7 +534,7 @@ void jrb_free_tree(JRB n)
|
||||
exit(1);
|
||||
}
|
||||
|
||||
while(jrb_first(n) != jrb_nil(n))
|
||||
while (jrb_first(n) != jrb_nil(n))
|
||||
jrb_delete_node(jrb_first(n));
|
||||
|
||||
free(n);
|
||||
|
@ -21,6 +21,7 @@ int main(void)
|
||||
JRB p;
|
||||
|
||||
INSERT("ab", "have");
|
||||
INSERT("ac", "NOT");
|
||||
INSERT("d", "little");
|
||||
INSERT("c", "this");
|
||||
INSERT("b", "passed");
|
||||
@ -29,6 +30,9 @@ int main(void)
|
||||
INSERT("aa", "We");
|
||||
INSERT("ff", "!");
|
||||
|
||||
p = jrb_find(tree, "ac", cmp);
|
||||
jrb_delete_node(p);
|
||||
|
||||
jrb_traverse(p, tree)
|
||||
printf("%s ", (char *) jrb_val(p));
|
||||
printf("\n");
|
||||
|
Loading…
Reference in New Issue
Block a user