C# 클래스 MathParserDataStructures.MathParserBinaryTree

파일 보기 프로젝트 열기: FlorianRappl/YAMP 1 사용 예제들

공개 메소드들

메소드 설명
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.

보호된 메소드들

메소드 설명
Visit ( IVisitor visitor, MathParserTreeNode curNode ) : void

Visit all nodes in the binary tree.

메소드 상세

MathParserBinaryTree() 공개 메소드

public MathParserBinaryTree ( ) : System
리턴 System

MathParserBinaryTree() 공개 메소드

Create binary tree object with specified root.
public MathParserBinaryTree ( MathParserTreeNode root ) : System
root MathParserTreeNode
리턴 System

Visit() 공개 메소드

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

Visit() 보호된 메소드

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