The Tree type exposes the following members.
Back to Top
Back to Top
Back to Top
Constructors
Name | Description | |
---|---|---|
Tree |
Construct a tree providing a root node.
|
Methods
Name | Description | |
---|---|---|
DFSearch |
Performs a depth-first search on the entire tree.
| |
DFTraverse |
Does a depth-first traverse of the tree and returns all nodes for the entire tree in that order.
| |
DFTraverse(Node, List Node ) |
Does a depth-first traverse of the tree and returns all nodes with respect to the specified root-node.
|
Properties
Name | Description | |
---|---|---|
Root |
The root-node of the tree.
|
See Also