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
Afficher le fichier Open project: paratechnical/RadixTree Class Usage Examples

Méthodes publiques

Свойство Type Description
Label string
SubNodes List

Méthodes publiques

Méthode Description
Node ( ) : System
Node ( string l ) : System

Method Details

Node() public méthode

public Node ( ) : System
Résultat System

Node() public méthode

public Node ( string l ) : System
l string
Résultat System

Property Details

Label public_oe property

public string Label
Résultat string

SubNodes public_oe property

public List SubNodes
Résultat List