aboutsummaryrefslogtreecommitdiff
path: root/sparse.h
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2014-03-04 15:26:20 -0500
committerCalvin Morrison <mutantturkey@gmail.com>2014-03-04 15:26:20 -0500
commit9769350e545f44d19f0a3c676ced157b5e76cd36 (patch)
treea3208499372e215611fa8c5f7ef84ccffdde1db0 /sparse.h
parenta14b311161676703eb14c6ede8f8f440dadcf875 (diff)
rework makefile
Diffstat (limited to 'sparse.h')
-rw-r--r--sparse.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/sparse.h b/sparse.h
deleted file mode 100644
index 2ffbabd..0000000
--- a/sparse.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <stdbool.h>
-
-struct b_tree {
- size_t index;
- unsigned long long value;
- struct b_tree *right;
- struct b_tree *left;
-};
-
-typedef struct b_tree node;
-
-node* search(node **tree, size_t index);
-void insert(node **tree, size_t index);
-void deltree(node *tree);
-unsigned long long lookup(node **tree, size_t index);
-
-void print_sparse(node *tree, bool label, bool nonzero, unsigned int kmer);