C# Class RadixTree.Node

represents a node in the radix tree stores: a label - string that the tree holds a list of the node's subnodes - a list of other objects of this type
ファイルを表示 Open project: paratechnical/RadixTree Class Usage Examples

Public Properties

Property Type Description
Label string
SubNodes List

Public Methods

Method Description
Node ( ) : System
Node ( string l ) : System

Method Details

Node() public method

public Node ( ) : System
return System

Node() public method

public Node ( string l ) : System
l string
return System

Property Details

Label public_oe property

public string Label
return string

SubNodes public_oe property

public List SubNodes
return List