Miller and Myers (LCS Longest Common Subsequence)

From Algorithm Wiki
Revision as of 11:14, 15 February 2023 by Admin (talk | contribs) (Created page with "== Time Complexity == $O(n(m-r)$) == Space Complexity == $O(m^{2})$ words (Derived: Uses an upper triangular matrix $M$ that is size $(m + 1) \times (m + 1)$) == Description == == Approximate? == Exact == Randomized? == No, deterministic == Model of Computation == Word RAM == Year == 1985 == Reference == https://onlinelibrary-wiley-com.ezproxy.canberra.edu.au/doi/abs/10.1002/spe.4380151102")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Time Complexity

$O(n(m-r)$)

Space Complexity

$O(m^{2})$ words

(Derived: Uses an upper triangular matrix $M$ that is size $(m + 1) \times (m + 1)$)

Description

Approximate?

Exact

Randomized?

No, deterministic

Model of Computation

Word RAM

Year

1985

Reference

https://onlinelibrary-wiley-com.ezproxy.canberra.edu.au/doi/abs/10.1002/spe.4380151102