Searched defs:SuffixTreeNode (Results 1 – 1 of 1) sorted by relevance
33 struct SuffixTreeNode { struct37 enum class NodeKind { ST_Leaf, ST_Internal };43 unsigned StartIdx = EmptyIdx;47 unsigned ConcatLen = 0;57 unsigned LeftLeafIdx = EmptyIdx;58 unsigned RightLeafIdx = EmptyIdx;62 NodeKind getKind() const { return Kind; } in getKind()91 SuffixTreeNode(NodeKind Kind, unsigned StartIdx) in SuffixTreeNode() argument