TreeAlgorithmBaseT

TreeAlgorithmBase<T> class

A base class for implementations of ITreeAlgorithm

public abstract class TreeAlgorithmBase<T> : ITreeAlgorithm<T>
ParameterDescription
TThe type of the elements.

Methods

NameDescription
abstract Alg(T, int)Processes a node of a tree.
virtual PostAlg(T, int)Called after processing of a node of a tree.
virtual PreAlg(T, int)Called before processing of a node of a tree.

See Also