C# 클래스 SharpMod.BinaryTree

The BinaryTree class to efficiently look up the integer identifiers associated them to the text identifiers
파일 보기 프로젝트 열기: txdv/sharpmod 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
count int
root BinaryTree.Node

공개 메소드들

메소드 설명
Add ( Node node ) : void
Add ( string name, int val ) : void
BinaryTree ( ) : System
GetNode ( Node position, string name ) : Node
GetNode ( string name ) : Node
GetValue ( string name ) : int

비공개 메소드들

메소드 설명
Add ( BinaryTree &position, BinaryTree newNode ) : void

메소드 상세

Add() 공개 메소드

public Add ( Node node ) : void
node Node
리턴 void

Add() 공개 메소드

public Add ( string name, int val ) : void
name string
val int
리턴 void

BinaryTree() 공개 메소드

public BinaryTree ( ) : System
리턴 System

GetNode() 공개 메소드

public GetNode ( Node position, string name ) : Node
position Node
name string
리턴 Node

GetNode() 공개 메소드

public GetNode ( string name ) : Node
name string
리턴 Node

GetValue() 공개 메소드

public GetValue ( string name ) : int
name string
리턴 int

프로퍼티 상세

count 보호되어 있는 프로퍼티

protected int count
리턴 int

root 보호되어 있는 프로퍼티

protected BinaryTree.Node,SharpMod root
리턴 BinaryTree.Node