This is a program that solves boggle boards. For information see http://www.circlemud.org/~jelson/software/boggle.html The complete package is in the 'boggle.tar.gz' archive. If you just want to see one file instead of downloading the entire archive, the 'unpacked' directory contains the individual files: boggle1 -- Original version of my boggle program, that uses a depth first search to enumerate all possible letter sequences in a board up to 8 characters, then matches each of those against the dictionary using a binary search. boggle2 -- Newer version of the solver that constructs a "trie" from the dictionary, then descends down the trie in parallel with the DFS. This allows it to prune any subtrees of the DFS that do not match the prefix of any word in the dictionary. netboggle- A web interface to boggle2. Consists of a backend server (netboggle) and a front-end Perl script to generate the web page (netboggle.pl).