Author: Will Tesler
Trie data structure implementation for Java
Trie.java is the class that represents the data structure
SparseArray.java is a java implementation of a sparse array
libs/trove.jar is a required library used by SparseArray.java
Make sure you include trove.jar in your build path when setting your environment!
Trie currently supports the following operations:
putWord(String word); getWord(String word); getSuperWords(String partial);