- 
                Notifications
    
You must be signed in to change notification settings  - Fork 35
 
T_CodeJam_Collections_SuffixTreeBase_Node
        Andrew Koryavchenko edited this page Jun 17, 2018 
        ·
        2 revisions
      
    A suffix tree edge combined with the end node
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
protected struct NodeVB
Protected Structure NodeF#
[<SealedAttribute>]
type Node =  struct endThe SuffixTreeBase.Node type exposes the following members.
| Name | Description | |
|---|---|---|
![]()  | 
SuffixTreeBase.Node | Constructs a new node | 
| Name | Description | |
|---|---|---|
![]()  | 
Begin | Index of the first character of a substring corresponding to the node | 
![]()  | 
Children | 
A list of child nodes
 null for leaf nodes  | 
![]()  | 
End | Index after the last character of a substring corresponding to the node | 
![]()  | 
IsLeaf | Shows whether it is a leaf or an internal node | 
![]()  | 
IsTerminal | Shows whether it is a terminal (ending at a string end) node or not | 
![]()  | 
Length | Length of the corresponding substring | 
| Name | Description | |
|---|---|---|
![]()  | 
Equals | Indicates whether this instance and a specified object are equal. (Inherited from ValueType.) | 
![]()  | 
GetHashCode | Returns the hash code for this instance. (Inherited from ValueType.) | 
![]()  | 
GetType | Gets the Type of the current instance. (Inherited from Object.) | 
![]()  | 
ToString | Returns the fully qualified type name of this instance. (Inherited from ValueType.) | 

