Longest common subsequence: Difference between revisions

m
Adjusted Match() method signature.
(Introduced LCS::pushPair() method. Added static method declarations.)
m (Adjusted Match() method signature.)
Line 627:
// time will be O(log(m+n)), at most.
//
static void Match(
static void Match(CHAR_TO_INDEXES_MAP& indexesOf2MatchedByChar, MATCHES& indexesOf2MatchedByIndex1,
const string& s1, const string& s2) {
uint32_t index = 0;
159

edits