TrieStringSet

by Neal Ziring, 2/27/2000


The TrieStringSet class, and the stuff that go with it,
are simply the output of my attempt to learn how to
write a class that fits into the Java 2 Collection 
Framework.

The files are:

   nz/util/*.java    Source files for TrieStringSet and
		     its support class PagedArray.  
		     These classes live in the package 
		     nz.util.

   nz/util/*.class   Compiled versions of TrieStringSet
		     and its supporting classes.

   doc/*	     Javadoc documentation for the
		     TrieStringSet and PagedArray.
		     Load doc/index.html into your web
		     browser to read about the classes.

   nz_util_trie.jar  A Jar holding the TrieStringSet
		     classes and the usual manifest.

   TestTrie.java     A test program to exercise the
		     TrieStringSet and compare its
		     performance with the HashSet and
		     TreeSet.


If you have questions about the TrieStringSet, contact
Neal Ziring, ziring@home.com.


