aboutsummaryrefslogtreecommitdiff
path: root/trie.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'trie.cpp')
-rw-r--r--trie.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/trie.cpp b/trie.cpp
index a3446a97..e3158a2b 100644
--- a/trie.cpp
+++ b/trie.cpp
@@ -1,16 +1,6 @@
#include "trie.h"
template <class T>
-trie<T>::trie () {
- this->root = new trie_node<T> ('\0');
-}
-
-template <class T>
-trie_node<T>::trie_node (char c) {
- this->c = c;
-}
-
-template <class T>
trie_node<T>::trie_node (char c, trie_node<T>* next, trie_node<T>* child) {
this->c = c;
this->next = next;