Mercurial > hg > Papers > 2018 > ryokka-thesis
view final_main/src/insertCase2.c @ 5:eafc166804f3
fix Capter4.2,5,1
author | ryokka |
---|---|
date | Mon, 19 Feb 2018 18:44:59 +0900 |
parents | 93d26c4576d3 |
children |
line wrap: on
line source
__code insertCase2(struct Context* context, struct Node* current) { struct Node* parent; stack_pop(context->node_stack, &parent); if (parent->color == Black) { stack_pop(context->code_stack, &context->next); goto meta(context, context->next); } stack_push(context->node_stack, &parent); goto meta(context, InsertCase3); } __code insert2_stub(struct Context* context) { goto insertCase2(context, context->data[Tree]->tree.current); }