Reverse dictionary

For reverse concept dictionary, see conceptual dictionary.

A reverse dictionary is a dictionary organized in a non-standard order (usually referring to being in a so-called "reverse" order) that provides the user with information that would be difficult to obtain from a traditionally alphabetized dictionary. There are two principal types of reverse dictionaries: reverse word dictionaries, and reverse concept dictionaries (conceptual dictionary). This article discusses reverse word dictionaries; see conceptual dictionary for reverse concept dictionaries.

Reverse dictionaries were historically difficult to produce before the advent of the electronic computer, but have become more common since 1974, when the first computer sorted reverse dictionary was published: Stahl and Scavnicky's A Reverse Dictionary of the Spanish Language.[1]

Definition

The reverse word dictionary is a dictionary where the word entries in the dictionary are not alphabetized in the same manner as a traditional dictionary. For example, A Reverse Dictionary of the Spanish Language[1] and Walker's Rhyming Dictionary[2] are reverse dictionaries, the organization of which is based upon sorting each entry word upon its last letter and the subsequent letters proceeding toward the beginning of that word. Consequently, in these reverse dictionaries all words that have the same suffix appear in order in the dictionary. Such a reverse dictionary would be useful for linguists and poets who might be looking for words ending with a particular suffix, or by an anthropologist or forensics specialist examining a damaged text (e.g. a stone inscription, or a burned document) that had only the final portion of a particular word preserved. Reverse dictionaries of this type have been published for most major alphabetical languages (see numerous examples listed below). By way of contrast, in a standard dictionary words are organized such that words with the same prefix appear in order, since the sorting order is starting with the first letter of the entry word and subsequent letters proceeding toward the end of that word.

Applications

Applications of reverse word dictionaries include:

Construction

Reverse word dictionaries are straightforward to construct, by simply sorting based on reversed words. This was labor-intensive and tedious before the advent of electronic computers, but is now straightforward. For example, using Perl and sort allows the following one-liner program to produce a reverse dictionary of the file "dict":

< dict \
    perl -nle 'print scalar reverse $_' |\
    sort |\
    perl -nle 'print scalar reverse $_'

Some sort utilities can sort on a reversed version of the sort key,[3] making it easy to generate reverse dictionaries on the fly if the dictionary data is available in electronic form.

Examples

English

Online

Physical

Other Languages

References

  1. 1 2 Stahl, Fred A., Scavnicky, Gary E. A., A Reverse Dictionary of the Spanish Language, University of Illinois Press, Urbana, IL,1974.
  2. Walker, John, The rhyming dictionary of the English language: in which the whole language is arranged according to its terminations ..., Routledge & Kegan Paul, 1983.
  3. http://billposer.org/Software/msort.html

See also

This article is issued from Wikipedia - version of the 11/28/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.