C# Class MathParserDataStructures.MathParserBinaryTree

Afficher le fichier Open project: FlorianRappl/YAMP Class Usage Examples

Méthodes publiques

Méthode Description
MathParserBinaryTree ( ) : System
MathParserBinaryTree ( MathParserTreeNode root ) : System

Create binary tree object with specified root.

Visit ( IVisitor visitor ) : void

Visit all nodes in the binary tree. Left-Right-Root movement is performed.

Méthodes protégées

Méthode Description
Visit ( IVisitor visitor, MathParserTreeNode curNode ) : void

Visit all nodes in the binary tree.

Method Details

MathParserBinaryTree() public méthode

public MathParserBinaryTree ( ) : System
Résultat System

MathParserBinaryTree() public méthode

Create binary tree object with specified root.
public MathParserBinaryTree ( MathParserTreeNode root ) : System
root MathParserTreeNode
Résultat System

Visit() public méthode

Visit all nodes in the binary tree. Left-Right-Root movement is performed.
public Visit ( IVisitor visitor ) : void
visitor IVisitor Visitor
Résultat void

Visit() protected méthode

Visit all nodes in the binary tree.
protected Visit ( IVisitor visitor, MathParserTreeNode curNode ) : void
visitor IVisitor Visitor
curNode MathParserTreeNode Current node
Résultat void