Click or drag to resize
Accord.NET (logo)

DecisionTreeTraversalPostOrder Method

Post-order tree traversal method.

Namespace:  Accord.MachineLearning.DecisionTrees
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
public static IEnumerator<DecisionNode> PostOrder(
	DecisionNode tree
)
Request Example View Source

Parameters

tree
Type: Accord.MachineLearning.DecisionTreesDecisionNode

Return Value

Type: IEnumeratorDecisionNode
Remarks
Adapted from John Cowan (1998) recommendation.
See Also