Searched defs:SuffixTreeNode (Results 1 – 1 of 1) sorted by relevance
34 struct SuffixTreeNode { struct38 enum class NodeKind { ST_Leaf, ST_Internal };44 unsigned StartIdx = EmptyIdx;48 unsigned ConcatLen = 0;58 unsigned LeftLeafIdx = EmptyIdx;59 unsigned RightLeafIdx = EmptyIdx;63 NodeKind getKind() const { return Kind; } in getKind()92 SuffixTreeNode(NodeKind Kind, unsigned StartIdx) in SuffixTreeNode() argument