upload
National Institute of Standards and Technology
Industry: Technology
Number of terms: 2742
Number of blossaries: 0
Company Profile:
The National Institute of Standards and Technology (NIST) — known between 1901 and 1988 as the National Bureau of Standards (NBS) — is a measurement standards laboratory and a non-regulatory agency of the United States Department of Commerce. The institute's official mission is to promote U.S. ...
A specialized sort algorithm that first builds a blind trie, then traverse the tree left to right.
Industry:Computer science
A stack limited to a fixed number of items.
Industry:Computer science
A state in a nondeterministic Turing machine from which the machine accepts if any move leads to acceptance.
Industry:Computer science
A state in an alternating Turing machine from which the machine accepts only if all possible moves lead to acceptance.
Industry:Computer science
A state-space search algorithm that considers the estimated best partial solution next. This is typically implemented with a priority queue.
Industry:Computer science
A string matching algorithm that compares characters from the end of the pattern to its beginning. When characters don't match, searching jumps to the next matching position in the pattern.
Industry:Computer science
A string matching algorithm that compares characters from the end of the pattern to its beginning. When characters don't match, searching jumps to the next matching position in the pattern.
Industry:Computer science
A string matching algorithm that compares characters from the end of the pattern to its beginning. When characters don't match, searching jumps to the next possible match: the farthest of a table like that used in the Knuth-Morris-Pratt algorithm and the next matching position in the pattern.
Industry:Computer science
A string matching algorithm that compares characters from the end of the search string to its beginning. When a character doesn't match, the next character in the text beyond the search string determines where the next possible match begins.
Industry:Computer science
A string matching algorithm that compares string's hash values, rather than the strings themselves. For efficiency, the hash value of the next position in the text is easily computed from the hash value of the current position.
Industry:Computer science