Artemis.AVLTree: | Types | Source |
Thanks to this tutorial: http://cmcrossroads.com/bradapp/ftp/src/libs/C++/AvlTrees.html.
TAVLTree |
Type TAVLTree |
Methods Summary | |
---|---|
find | Find an object. |
insert | Insert an object. |
isEmpty | Check whether the tree is empty. |
remove | Delete an object. |
Method find:Int(value:Object) | |
Returns | True if object exists in tree - otherwise False. |
Description | Find an object. |
Method insert:Int(value:Object, height_change:Int Var) | |
Description | Insert an object. |
Method isEmpty:Int() | |
Description | Check whether the tree is empty. |
Method remove(value:Object) | |
Description | Delete an object. |