Webster's Online Dictionary
with Multilingual Thesaurus Translation

 
Earth's largest dictionary with more than 1226 modern languages and Eve!

Specialty Expressions: BINARY SEARCH

ExpressionsDomainDefinition
Balanced binary search treeMathA binary search tree in which at most one node has one child. All other nodes have two or zero children. (references)
Binary searchComputingBinary search A search algorithm which repeatedly divides an ordered search space in half according to how the required (key) value compares with the middle element. The following pseudo-C routine performs a binary search return the index of the element of vector "thing[first...last]" equal to "target": if (target < thing[first] || target > thing[last]) return NOT_FOUND; while (first < last) thing[mid]) first = mid+1; else return mid;">mid = (first+last)/2; /* truncate to integer */ if (target < thing[mid]) last = mid; else if (target > thing[mid]) first = mid+1; else return mid; if (target == thing[last]) return last; return NOT_FOUND; (1995-04-10). Source: The Free On-line Dictionary of Computing..
Binary searchMathSearch a sorted array by repeatedly dividing the search interval in half. Begin with an interval covering the whole array. If the value of the search key is less than the item in the middle of the interval, narrow the interval to the lower half. Otherwise narrow it to the upper half. Repeatedly check until the value is found or the interval is empty. (references)
Binary search treeMathA binary tree where every node's left subtree has values less than the node's value, and every right subtree has values greater. A new node is added as a leaf. (references)
Height-balanced binary search treeMathA height-balanced tree which is also a binary search tree. It supports membership, insert, and delete operations in time logarithmic in the number of nodes in the tree. (references)

Source: compiled by the editor from various references; see credits.

Top

Topics by Level of Interest: BINARY SEARCH

Topics sorted by level of InterestLevel (1=low, 600=high)   Topics sorted AlphabeticallyLevel (1=low, 600=high)
Binary search tree55   Binary search algorithm42
Binary search algorithm42   Binary search tree55
Uniform binary search4   Uniform binary search4

Source: the editor, created by/for EVE to gauge likely levels of human interest in linguistically triggered topics (compiled across various sources, such as Wikipedia and specialty expression glosses).