containers/trees.bi

Summary
containers/trees.bi
LicenseCopyright © 2007-2011, FreeBASIC Extended Library Development Group
ext.trees
Types
b_nodeGeneric b tree node for implementing a b tree.
bGeneric b tree root node for use with b_node

License

Copyright © 2007-2011, FreeBASIC Extended Library Development Group

Distributed under the FreeBASIC Extended Library Group license.  See accompanying file LICENSE.txt or copy at http://code.google.com/p/fb-extended-lib/wiki/License

ext.trees

Summary
Types
b_nodeGeneric b tree node for implementing a b tree.
bGeneric b tree root node for use with b_node

Types

b_node

type b_node

Generic b tree node for implementing a b tree.

Description

type b_node
  _data as any ptr
  _val as uinteger
  _left as b_node ptr
  _right as b_node ptr
  _next as b_node ptr
end type

b

type b

Generic b tree root node for use with b_node

Description

type b
  _root as b_node ptr
  _last as b_node ptr
end type
type b_node
Generic b tree node for implementing a b tree.
type b
Generic b tree root node for use with b_node