efficient longest common subsequence algorithm library?

前端 未结 3 607
耶瑟儿~
耶瑟儿~ 2021-02-04 09:43

I\'m looking for a (space) efficient implementation of an LCS algorithm for use in a C++ program. Inputs are two random access sequences of integers.
I\'m currently using th

相关标签:
3条回答
  • When searching for things like that, try scholar.google.com. It is much better for finding scholarly works. It turned up http://www.biotec.icb.ufmg.br/cabi/artigos/seminarios2/subsequence_algorithm.pdf this document, a "survey of longest common subsequences algorithms".

    0 讨论(0)
  • 2021-02-04 10:33

    Not C++ but Python but I think usable.

    http://wordaligned.org/articles/longest-common-subsequence

    0 讨论(0)
  • 2021-02-04 10:34

    Hirschberg's Algorithm embeds a javascript implementation : almost C.

    0 讨论(0)
提交回复
热议问题