Skip to content

T_CodeJam_Collections_SuffixTreeBase_Node

Andrew Koryavchenko edited this page Jun 17, 2018 · 2 revisions

SuffixTreeBase.Node Structure

A suffix tree edge combined with the end node

Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0

Syntax

C#

protected struct Node

VB

Protected Structure Node

F#

[<SealedAttribute>]
type Node =  struct end

The SuffixTreeBase.Node type exposes the following members.

Constructors

 

Name Description
Public method SuffixTreeBase.Node Constructs a new node
  Back to Top

Properties

 

Name Description
Public property Begin Index of the first character of a substring corresponding to the node
Public property Children A list of child nodes

Remarks

null for leaf nodes

Public property End Index after the last character of a substring corresponding to the node
Public property IsLeaf Shows whether it is a leaf or an internal node
Public property IsTerminal Shows whether it is a terminal (ending at a string end) node or not
Public property Length Length of the corresponding substring
  Back to Top

Methods

 

Name Description
Public method Equals Indicates whether this instance and a specified object are equal. (Inherited from ValueType.)
Public method GetHashCode Returns the hash code for this instance. (Inherited from ValueType.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method ToString Returns the fully qualified type name of this instance. (Inherited from ValueType.)
  Back to Top

See Also

Reference

CodeJam.Collections Namespace

Clone this wiki locally