C# 클래스 Accord.MachineLearning.DecisionTrees.DecisionTreeTraversal

Common traversal methods for n-ary trees.
파일 보기 프로젝트 열기: accord-net/framework

공개 메소드들

메소드 설명
BreadthFirst ( Accord.MachineLearning.DecisionTrees.DecisionNode tree ) : IEnumerator

Breadth-first traversal method.

DepthFirst ( Accord.MachineLearning.DecisionTrees.DecisionNode tree ) : IEnumerator

Depth-first traversal method.

PostOrder ( Accord.MachineLearning.DecisionTrees.DecisionNode tree ) : IEnumerator

Post-order tree traversal method.

Adapted from John Cowan (1998) recommendation.

비공개 메소드들

메소드 설명
GetNextSibling ( int>.Dictionary cursors, Accord.MachineLearning.DecisionTrees.DecisionNode node ) : Accord.MachineLearning.DecisionTrees.DecisionNode

메소드 상세

BreadthFirst() 공개 정적인 메소드

Breadth-first traversal method.
public static BreadthFirst ( Accord.MachineLearning.DecisionTrees.DecisionNode tree ) : IEnumerator
tree Accord.MachineLearning.DecisionTrees.DecisionNode
리턴 IEnumerator

DepthFirst() 공개 정적인 메소드

Depth-first traversal method.
public static DepthFirst ( Accord.MachineLearning.DecisionTrees.DecisionNode tree ) : IEnumerator
tree Accord.MachineLearning.DecisionTrees.DecisionNode
리턴 IEnumerator

PostOrder() 공개 정적인 메소드

Post-order tree traversal method.
Adapted from John Cowan (1998) recommendation.
public static PostOrder ( Accord.MachineLearning.DecisionTrees.DecisionNode tree ) : IEnumerator
tree Accord.MachineLearning.DecisionTrees.DecisionNode
리턴 IEnumerator