This is a program that solves boggle boards. For information see http://www.circlemud.org/~jelson/software/boggle.html *** NOTE: there is now a newer version at the above address, along with a wordlist that looks rather like the OSPD3. 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).