Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
Loading...
Searching...
No Matches
Aleph::Longest_Common_Substring_Result Struct Reference

Result for longest common substring. More...

#include <String_DP.H>

Collaboration diagram for Aleph::Longest_Common_Substring_Result:
[legend]

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.
 

Detailed Description

Result for longest common substring.

Definition at line 281 of file String_DP.H.

Member Data Documentation

◆ begin_a

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().

◆ begin_b

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().

◆ length

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().

◆ 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().


The documentation for this struct was generated from the following file: