Enum TreeTraversalOrder
The order of visit of a "node and its children" sub-tree.
Namespace: MoreStructures.RecImmTrees.Visitor
Assembly: MoreStructures.dll
Syntax
public enum TreeTraversalOrder
Fields
Name | Description |
---|---|
ChildrenFirst | First visit all the children nodes, then the parent. |
ParentFirst | First visit the parent node, then its children. |