Add simple Hunt–McIlroy LCS algorithm (#10)
This commit is contained in:
parent
df78bdca1c
commit
bee5d88b02
7 changed files with 267 additions and 0 deletions
|
|
@ -10,6 +10,8 @@ pub enum Algorithm {
|
|||
Myers,
|
||||
/// Picks the patience algorithm from [`crate::algorithms::patience`]
|
||||
Patience,
|
||||
/// Picks the LCS algorithm from [`crate::algorithms::lcs`]
|
||||
Lcs,
|
||||
}
|
||||
|
||||
impl Default for Algorithm {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue