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