Hyper Dictionary

English Dictionary Computer Dictionary Thesaurus Dream Dictionary Medical Dictionary


Search Dictionary:  

Meaning of BINARY TREE

Computing Dictionary
 
 Definition: 

(btree) A tree in which each node has at most two successors or child nodes. In Haskell this could be represented as

        data BTree a = NilTree
                     | Node a (BTree a) (BTree a)

See also balanced tree.

 
 Websites: 
 

 

COPYRIGHT © 2000-2003 WEBNOX CORP. HOME | ABOUT HYPERDICTIONARY