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. ...
Permitting at most one next move at any step in a computation.
Industry:Computer science
Permitting more than one choice of next move at some step in a computation.
Industry:Computer science
Piecewise linear order-preserving (PLOP) hashing is a spatial access method which splits space into a nonperiodic grid. Each spatial dimension is divided by nodes of a binary tree. Object are stored in the grid cell of their centroid.
Industry:Computer science
Place n chess queens on an n × n board such that no queen can attack another. Efficiently find all possible placements.
Industry:Computer science
Problem where the update operations include either edge insertions (incremental) or deletions (decremental).
Industry:Computer science
Problem where the update operations include unrestricted insertions and deletions of edges.
Industry:Computer science
Process all nodes of a tree by depth: first the root, then the children of the root, etc. Equivalent to a breadth-first search from the root.
Industry:Computer science
Process all nodes of a tree by processing the root, then recursively processing all subtrees.
Industry:Computer science
Process all nodes of a tree by processing the root, then recursively processing all subtrees.
Industry:Computer science
Process all nodes of a tree by recursively processing all subtrees, then finally processing the root.
Industry:Computer science