9.5 Testing [ToC] [Index]     [Skip Back]     [Prev] [Up] [Next]

The testing code harbors no surprises.

368. <trb-test.c 368> =
<License 1>
#include <assert.h>
#include <limits.h>
#include <stdio.h>
#include "trb.h"
#include "test.h"

<TBST print function; tbst => trb 291>
<BST traverser check function; bst => trb 104>
<Compare two TRB trees for structure and content 369>
<Recursively verify TRB tree structure 370>
<RB tree verify function; rb => trb 244>
<BST test function; bst => trb 100>
<BST overflow test function; bst => trb 122>

369. <Compare two TRB trees for structure and content 369> =
static int 
compare_trees (struct trb_node *a, struct trb_node *b)
{ int okay; if (a == NULL || b == NULL)
    { if (a != NULL || b != NULL)
        { printf (" a=%d b=%d\n", a ? *(int *) a->trb_data : -1,
                  b ? *(int *) b->trb_data : -1); assert (0); } return 1; } assert (a != b); if (*(int *) a->trb_data != *(int *) b->trb_data || a->trb_tag[0] != b->trb_tag[0]
      || a->trb_tag[1] != b->trb_tag[1] || a->trb_color != b->trb_color)
    { printf (" Copied nodes differ: a=%d%c b=%d%c a:", *(int *) a->trb_data, a->trb_color == TRB_RED ? 'r' : 'b', *(int *) b->trb_data, b->trb_color == TRB_RED ? 'r' : 'b'); if (a->trb_tag[0] == TRB_CHILD)
        printf ("l"); if (a->trb_tag[1] == TRB_CHILD)
        printf ("r"); printf (" b:"); if (b->trb_tag[0] == TRB_CHILD)
        printf ("l"); if (b->trb_tag[1] == TRB_CHILD)
        printf ("r"); printf ("\n"); return 0; } if (a->trb_tag[0] == TRB_THREAD) assert ((a->trb_link[0] == NULL) != (a->trb_link[0] != b->trb_link[0])); if (a->trb_tag[1] == TRB_THREAD) assert ((a->trb_link[1] == NULL) != (a->trb_link[1] != b->trb_link[1])); okay = 1; if (a->trb_tag[0] == TRB_CHILD) okay &= compare_trees (a->trb_link[0], b->trb_link[0]); if (a->trb_tag[1] == TRB_CHILD) okay &= compare_trees (a->trb_link[1], b->trb_link[1]); return okay; }

This code is included in 368.

370. <Recursively verify TRB tree structure 370> =
static void 
recurse_verify_tree (struct trb_node *node, int *okay, size_t *count, int min, int max, int *bh)
{ int d; /* Value of this node's data. */ size_t subcount[2]; /* Number of nodes in subtrees. */ int subbh[2]; /* Black-heights of subtrees. */ if (node == NULL)
    { *count = 0; *bh = 0; return; } d = *(int *) node->trb_data; <Verify binary search tree ordering 114> subcount[0] = subcount[1] = 0; subbh[0] = subbh[1] = 0; if (node->trb_tag[0] == TRB_CHILD) recurse_verify_tree (node->trb_link[0], okay, &subcount[0], min, d - 1, &subbh[0]); if (node->trb_tag[1] == TRB_CHILD) recurse_verify_tree (node->trb_link[1], okay, &subcount[1], d + 1, max, &subbh[1]); *count = 1 + subcount[0] + subcount[1]; *bh = (node->trb_color == TRB_BLACK) + subbh[0]; <Verify RB node color; rb => trb 241> <Verify TRB node rule 1 compliance 371> <Verify RB node rule 2 compliance; rb => trb 243> }

This code is included in 368.

371. <Verify TRB node rule 1 compliance 371> =
/* Verify compliance with rule 1. */
if (node->trb_color == TRB_RED) 
  { if (node->trb_tag[0] == TRB_CHILD
        && node->trb_link[0]->trb_color == TRB_RED)
      { printf (" Red node %d has red left child %d\n", d, *(int *) node->trb_link[0]->trb_data); *okay = 0; } if (node->trb_tag[1] == TRB_CHILD
        && node->trb_link[1]->trb_color == TRB_RED)
      { printf (" Red node %d has red right child %d\n", d, *(int *) node->trb_link[1]->trb_data); *okay = 0; } }

This code is included in 370.

Prev: 9.4.5 Symmetric Case Up: 9 Threaded Red-Black Trees 10 Right-Threaded Binary Search Trees Next