Skip to content

jonathanli2012/trie

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

trie

C++ Trie Implementation

Usage

Compiles a command line interface "./trie" with insert/lookup/remove functionality

$ make

or

$ make trie

Usage:

$ ./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

Releases

No releases published

Packages

No packages published