|
Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
|
Result for longest common substring. More...
#include <String_DP.H>
Public Attributes | |
| size_t | length = 0 |
| Length of common substring. | |
| size_t | begin_a = 0 |
| Start index in first string. | |
| size_t | begin_b = 0 |
| Start index in second string. | |
| std::string | substring |
| The common substring. | |
Result for longest common substring.
Definition at line 281 of file String_DP.H.
| size_t Aleph::Longest_Common_Substring_Result::begin_a = 0 |
Start index in first string.
Definition at line 284 of file String_DP.H.
Referenced by Aleph::longest_common_substring().
| size_t Aleph::Longest_Common_Substring_Result::begin_b = 0 |
Start index in second string.
Definition at line 285 of file String_DP.H.
Referenced by Aleph::longest_common_substring().
| size_t Aleph::Longest_Common_Substring_Result::length = 0 |
Length of common substring.
Definition at line 283 of file String_DP.H.
Referenced by Aleph::longest_common_substring().
| std::string Aleph::Longest_Common_Substring_Result::substring |
The common substring.
Definition at line 286 of file String_DP.H.
Referenced by Aleph::longest_common_substring().