| [6e3ae00] | 1 | #ifndef AVL_TREE_H
 | 
|---|
 | 2 | #define AVL_TREE_H
 | 
|---|
 | 3 | 
 | 
|---|
 | 4 | extern "C" {
 | 
|---|
 | 5 | #define NULL 0
 | 
|---|
 | 6 | #define assert(cond) if (! (cond)) { printf("Assertion failed: (%s) at %s:%d\n", #cond, __FILE__, __LINE__); abort(); }
 | 
|---|
 | 7 | }
 | 
|---|
 | 8 | 
 | 
|---|
 | 9 | // #include <types.h>
 | 
|---|
 | 10 | // #include <lib.h>
 | 
|---|
 | 11 | 
 | 
|---|
 | 12 | trait Comparable(otype T) {
 | 
|---|
 | 13 |   int ?<?(T, T);
 | 
|---|
 | 14 | };
 | 
|---|
 | 15 | 
 | 
|---|
 | 16 | forall(otype T | Comparable(T))
 | 
|---|
 | 17 | int ?==?(T t1, T t2);
 | 
|---|
 | 18 | 
 | 
|---|
 | 19 | forall(otype T | Comparable(T))
 | 
|---|
 | 20 | int ?>?(T t1, T t2);
 | 
|---|
 | 21 | 
 | 
|---|
| [627f585] | 22 | // xxx - unbound type variable problems when trying to use new instead of create
 | 
|---|
 | 23 | // forall( otype T, ttype Params | { void ?{}(T *, Params); } ) T * new( Params p );
 | 
|---|
 | 24 | 
 | 
|---|
| [6e3ae00] | 25 | forall(dtype T | { void ^?{}(T *); })
 | 
|---|
 | 26 | void delete(T * x);
 | 
|---|
 | 27 | 
 | 
|---|
 | 28 | // To-do: properly use height or balance factor
 | 
|---|
 | 29 | // Right now I'm recomputing the height for each
 | 
|---|
 | 30 | // node multiple times. It's Theta-log(n), but still..
 | 
|---|
 | 31 | 
 | 
|---|
 | 32 | // Balanced Binary Search Tree of void pointers; almost an AVL tree -
 | 
|---|
 | 33 | //   just needs to make use of the balance factor properly
 | 
|---|
 | 34 | // Operations:
 | 
|---|
 | 35 | // ?{}, ^?{}
 | 
|---|
 | 36 | // create   - allocate a new tree. Just a wrapper around malloc which also calls the tree constructor.
 | 
|---|
 | 37 | // find     - search through the tree for the given key; return the associated value
 | 
|---|
 | 38 | // empty    - return true if the tree is empty
 | 
|---|
 | 39 | // insert   - insert node with key and value pair. Returns 0 on success
 | 
|---|
 | 40 | // remove   - remove node with the given key, returns 0 on success, 1 on failure
 | 
|---|
 | 41 | // copy     - deep copy of a tree
 | 
|---|
 | 42 | // for_each - applies the given function to every data element in the tree
 | 
|---|
 | 43 | //    assumes that a non-zero return value is an error, will return
 | 
|---|
 | 44 | //    the error code from func
 | 
|---|
 | 45 | 
 | 
|---|
 | 46 | // temporary: need forward decl to get around typedef problem
 | 
|---|
 | 47 | forall(otype K | Comparable(K), otype V)
 | 
|---|
 | 48 | struct tree;
 | 
|---|
 | 49 | 
 | 
|---|
 | 50 | forall(otype K | Comparable(K), otype V)
 | 
|---|
 | 51 | struct tree {
 | 
|---|
 | 52 |   K key;
 | 
|---|
 | 53 |   V value;
 | 
|---|
 | 54 |   tree(K, V) * parent;
 | 
|---|
 | 55 |   tree(K, V) * left;
 | 
|---|
 | 56 |   tree(K, V) * right;
 | 
|---|
 | 57 |   int balance;
 | 
|---|
 | 58 | };
 | 
|---|
 | 59 | 
 | 
|---|
 | 60 | forall(otype K | Comparable(K), otype V)
 | 
|---|
 | 61 | void ?{}(tree(K, V) *t, K key, V value);
 | 
|---|
 | 62 | 
 | 
|---|
 | 63 | forall(otype K | Comparable(K), otype V)
 | 
|---|
 | 64 | void ^?{}(tree(K, V) * t);
 | 
|---|
 | 65 | 
 | 
|---|
 | 66 | forall(otype K | Comparable(K), otype V)
 | 
|---|
 | 67 | tree(K, V) * create(K key, V value);
 | 
|---|
 | 68 | 
 | 
|---|
 | 69 | forall(otype K | Comparable(K), otype V)
 | 
|---|
 | 70 | V * find(tree(K, V) * t, K key);
 | 
|---|
 | 71 | 
 | 
|---|
 | 72 | forall(otype K | Comparable(K), otype V)
 | 
|---|
 | 73 | int empty(tree(K, V) * t);
 | 
|---|
 | 74 | 
 | 
|---|
 | 75 | // returns the root of the tree
 | 
|---|
 | 76 | forall(otype K | Comparable(K), otype V)
 | 
|---|
 | 77 | int insert(tree(K, V) ** t, K key, V value);
 | 
|---|
 | 78 | 
 | 
|---|
 | 79 | forall(otype K | Comparable(K), otype V)
 | 
|---|
 | 80 | int remove(tree(K, V) ** t, K key);
 | 
|---|
 | 81 | 
 | 
|---|
 | 82 | forall(otype K | Comparable(K), otype V)
 | 
|---|
 | 83 | void copy(tree(K, V) * src, tree(K, V) ** ret);
 | 
|---|
 | 84 | 
 | 
|---|
 | 85 | forall(otype K | Comparable(K), otype V)
 | 
|---|
 | 86 | void for_each(tree(K, V) * t, void (*func)(V));
 | 
|---|
 | 87 | 
 | 
|---|
 | 88 | // // Helper function to print trees
 | 
|---|
 | 89 | // forall(otype K | Comparable(K), otype V)
 | 
|---|
 | 90 | // void printTree(tree * t, int level){
 | 
|---|
 | 91 | //   if (empty(t)){
 | 
|---|
 | 92 | //     return;
 | 
|---|
 | 93 | //   }
 | 
|---|
 | 94 | 
 | 
|---|
 | 95 | //   printTree(t->left, level+1);
 | 
|---|
 | 96 | //   printf("key: %d, value: %s, level: %d\n", t->key, t->value, level);
 | 
|---|
 | 97 | //   printTree(t->right, level+1);
 | 
|---|
 | 98 | // }
 | 
|---|
 | 99 | 
 | 
|---|
 | 100 | // // inorder traversal of t
 | 
|---|
 | 101 | // // prints each key, followed by the value
 | 
|---|
 | 102 | // forall(otype K | Comparable(K), otype V)
 | 
|---|
 | 103 | // void printTree(tree(K, V) * t){
 | 
|---|
 | 104 | //     printTree(t, 0);
 | 
|---|
 | 105 | // }
 | 
|---|
 | 106 | 
 | 
|---|
 | 107 | 
 | 
|---|
 | 108 | #endif
 | 
|---|