shortest_common_superstring
SCS
00 Remarks
01 Syntax
Microsoft.VisualBasic.ComponentModel.Algorithm.DynamicProgramming.SCS
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| Coverage | 1 | 使用重叠程度最高的片段作为统计的标准 |
| ShortestCommonSuperString | 1 | Solve using Greedy. For all string find the max common prefix/suffix. Merge those two strings and continue it. |
| TableView | 1 |
03 Members
Coverage(
IEnumerable(Of String), Char)使用重叠程度最高的片段作为统计的标准
Parameters
| Name | Type | Description |
|---|---|---|
table | IEnumerable(Of String) | - |
ShortestCommonSuperString(
IEnumerable(Of String))Solve using Greedy. For all string find the max common prefix/suffix. Merge those two strings and continue it.
Remarks
当这个函数遇到完全没有重叠的序列片段的时候,是会直接将这个不重叠的片段接到SCS的最末尾的
TableView(
IEnumerable(Of String), String, TextWriter, Char)