Class Index | File Index

Classes


Class comb.collections.BinaryTree


Extends comb.collections.Tree.

A Search tree that maintains the following properties

Performance
BestWorst
SpaceO(n)O(n)
SearchO(log n)O(n)
InsertO(log n)O(n)
DeleteO(log n)O(n)

Defined in: BinaryTree.js.

Class Summary
Constructor Attributes Constructor Name and Description
 
Methods borrowed from class comb.collections.Tree:
clear, contains, every, filter, find, findGreaterThan, findLessThan, forEach, insert, isEmpty, map, print, reduce, reduceRight, remove, some, toArray, traverse, traverseWithCondition
Methods borrowed from class comb.collections.Collection:
concat, indexOf, join, lastIndexOf, slice, toString
Class Detail
comb.collections.BinaryTree()

Documentation generated by JsDoc Toolkit 2.4.0 on Fri Nov 18 2011 01:10:52 GMT-0600 (CST)