Anatree

An Anatree [1] is a data structure designed to solve anagrams. Solving an anagram is the problem of finding a word from a given list of letters. These problems are commonly encountered in word games like wordwheel, scrabble or crossword puzzles that we find in newspapers. The problem for the wordwheel also has the condition that the central letter appear in all the words framed with the given set. Some other conditions may be introduced regarding the frequency (number of appearances) of each of the letters in the given input string. These problems are classified as Constraint satisfaction problem in computer science literature.

An anatree is represented as a directed tree which contains a set of words (W) encoded as strings in some alphabet. The internal vertices are labelled with some letter in the alphabet and the leaves contain words. The edges are labelled with non-negative integers. An anatree has the property that the sum of the edge labels from the root to the leaf is the length of the word stored at the leaf. If the internal vertices are labelled as , ... , and the edge labels are , ... , then the path from the root to the leaf along these vertices and edges are a list of words that contain s, s and so on. Anatrees are intended to be read only data structures with all the words available at construction time.

A Mixed Anatree is an anatree where the internal vertices also store words. A mixed anatree can have words of varying lengths, where as in a regular anatree, all words are of the same length.

Data Structures for solving Anagrams

A number of data structures have been proposed to solve anagrams in constant time. Two of the most commonly used data structures are the Alphabetic map and the Frequency map. The Alphabetic map maintains a hash table of all the possible words that can be in the language (this is referred to as the lexicon). For a given input sting, sort the letters in alphabetic order. This sorted string maps onto a word in the hash table. Hence finding the anagram requires sorting the letters and a looking up the word in the hash table. The sorting can be done in linear time by the counting sort and hash table look up can be done in constant time.

For example, for the word ANATREE, the alphabetic map would produce a mapping of .

A Frequency map also stores the list of all possible words in the lexicon in a hash table. For a given input string, the frequency map maintains the frequencies (number of appearances) of all the letters and uses this count to perform a look up in the hash table. The worst case execution time is found to be linear in size of the lexicon.

For example, for the word ANATREE, the alphabetic map would produce a mapping of . The words that do not appear in the string are not written in the map.

Construction of an Anatree

The construction of an Anatree begins by selecting a label for the root and partitioning words based on the label chosen for the root. This process is repeated recursively for all the labels of the tree. Anatree construction is non-canonical for a given set of words, depending on the label chosen for the root, the anatree will differ accordingly. The performance of the anatree is greatly impacted by the choice of labels.

The following are some heuristics for choosing labels:

Finding Anagrams in an Anatree

To find a word in an anatree, start at the root, depending on the frequency of the label in the given input string, follow the edge that has that frequency till the leaf. The leaf contains the required word. For example, consider the anatree in the figure, to find the word , the given string may be . Start at the root and follow the edge that has as the label. We follow this label since the given input string has . Traverse this edge until the leaf is encountered. That gives the required word.

Space and Time Requirements

A lexicon that stores words (each word can be characters long) in an alphabet has the following space requirements.

Data Structure Space Requirements
Alphabetic Map
Frequency Map
Anatree

The worst case execution time of an anatree is

See also

References

  1. Reams, Charles (March 2012). "Anatree: a fast data structure for anagrams". Journal of Experimental Algorithmics (JEA). 17 (1): 2012. doi:10.1145/2133803.2133804.
  2. "anagram". Retrieved 7 April 2013.
  3. "Nick's Blog".
This article is issued from Wikipedia - version of the 1/17/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.