Class FullyRecursiveConverter
Inheritance
System.Object
FullyRecursiveConverter
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: MoreStructures.SuffixStructures.Conversions
Assembly: MoreStructures.dll
Syntax
public class FullyRecursiveConverter : IConverter
Remarks
Implemented fully recursively, with one level of recursion per level of the input SuffixTrieNode. Limited by call stack depth and usable with input trees of a "reasonable" height (i.e. trees having a height < ~1K nodes).
Methods
| Improve this Doc View SourceTreeToTrie(SuffixTreeNode)
Declaration
public SuffixTrieNode TreeToTrie(SuffixTreeNode treeNode)
Parameters
Type | Name | Description |
---|---|---|
SuffixTreeNode | treeNode |
Returns
Type | Description |
---|---|
SuffixTrieNode |
Remarks
TrieToTree(SuffixTrieNode)
Declaration
public SuffixTreeNode TrieToTree(SuffixTrieNode trieNode)
Parameters
Type | Name | Description |
---|---|---|
SuffixTrieNode | trieNode |
Returns
Type | Description |
---|---|
SuffixTreeNode |