mirror of
git://projects.qi-hardware.com/wernermisc.git
synced 2024-11-14 09:13:44 +02:00
42 lines
613 B
C
42 lines
613 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "jrb.h"
|
|
|
|
|
|
|
|
static int cmp(const void *a, const void *b)
|
|
{
|
|
return strcmp(a, b);
|
|
}
|
|
|
|
|
|
#define INSERT(key, val) \
|
|
jrb_insert(tree, key, val, cmp)
|
|
|
|
|
|
int main(void)
|
|
{
|
|
struct jrb *tree = make_jrb();
|
|
struct jrb *p;
|
|
|
|
INSERT("ab", "have");
|
|
INSERT("ac", "NOT");
|
|
INSERT("d", "little");
|
|
INSERT("c", "this");
|
|
INSERT("b", "passed");
|
|
INSERT("e", "regression");
|
|
INSERT("fa", "test");
|
|
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");
|
|
|
|
return 0;
|
|
}
|