replica: use libavl for avl tree implementation

This commit is contained in:
spew 2017-04-22 14:28:02 -05:00
parent 9cf5198145
commit 6261dcb06b
11 changed files with 47 additions and 459 deletions

View file

@ -20,5 +20,7 @@ Avltree *avlcreate(int(*)(Avl*, Avl*));
Avl *avllookup(Avltree*, Avl*, int);
Avl *avldelete(Avltree*, Avl*);
Avl *avlinsert(Avltree*, Avl*);
Avl *avlmin(Avltree*);
Avl *avlmax(Avltree*);
Avl *avlnext(Avl*);
Avl *avlprev(Avl*);