C++ Trie Implementation
Compiles a command line interface "./trie" with insert/lookup/remove functionality
$ make
or
$ make trie
$ ./trie
> i dog
> i cat
> l dog
TRUE
> r dog
> l dog
FALSE
i : inserts the specified string into the trie
l : lookups the specified string in the trie
r : removes the specified string in the trie