C# Class Axiom.Compiler.Framework.BinaryTree

Datei anzeigen Open project: ahodroj/prologdotnet Class Usage Examples

Public Properties

Property Type Description
_arguments System.Collections.ArrayList
_left BinaryTree
_name string
_right BinaryTree

Public Methods

Method Description
BinaryTree ( string name ) : System
BinaryTree ( string name, ArrayList arguments ) : System
BinaryTree ( string name, BinaryTree left ) : System
BinaryTree ( string name, BinaryTree left, BinaryTree right ) : System
Flatten ( BinaryTree t, ArrayList &args ) : void

Method Details

BinaryTree() public method

public BinaryTree ( string name ) : System
name string
return System

BinaryTree() public method

public BinaryTree ( string name, ArrayList arguments ) : System
name string
arguments System.Collections.ArrayList
return System

BinaryTree() public method

public BinaryTree ( string name, BinaryTree left ) : System
name string
left BinaryTree
return System

BinaryTree() public method

public BinaryTree ( string name, BinaryTree left, BinaryTree right ) : System
name string
left BinaryTree
right BinaryTree
return System

Flatten() public method

public Flatten ( BinaryTree t, ArrayList &args ) : void
t BinaryTree
args System.Collections.ArrayList
return void

Property Details

_arguments public_oe property

public ArrayList,System.Collections _arguments
return System.Collections.ArrayList

_left public_oe property

public BinaryTree,Axiom.Compiler.Framework _left
return BinaryTree

_name public_oe property

public string _name
return string

_right public_oe property

public BinaryTree,Axiom.Compiler.Framework _right
return BinaryTree