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éthode | Description | |
---|---|---|
Visit ( IVisitor visitor, MathParserTreeNode curNode ) : void |
Visit all nodes in the binary tree.
|
public MathParserBinaryTree ( MathParserTreeNode root ) : System | ||
root | MathParserTreeNode | |
Résultat | System |
public Visit ( IVisitor visitor ) : void | ||
visitor | IVisitor | Visitor |
Résultat | void |
protected Visit ( IVisitor visitor, MathParserTreeNode curNode ) : void | ||
visitor | IVisitor | Visitor |
curNode | MathParserTreeNode | Current node |
Résultat | void |