Switch the table to using tries.

This commit is contained in:
2018-03-24 20:47:34 -07:00
parent 56c891f9f8
commit 26ad341a50
2 changed files with 9 additions and 8 deletions

View File

@@ -1,9 +1,9 @@
#ifndef LIBABACUS_TABLE_H
#define LIBABACUS_TABLE_H
#include "ht.h"
#include "result.h"
#include "custom.h"
#include "trie.h"
/**
* A struct that represents a structure
@@ -20,7 +20,7 @@ struct libab_table_s {
/**
* The hash table used to store the data.
*/
ht table;
libab_trie trie;
};
/**