Rust implementation of the Longest increasing subsequence algorithm.
Also provides a function for diffing lists, that makes use of the LIS algorithm.
Requires the unstable feature generators
and thus the nightly compiler.
The main trait exposed by this crate is LisExt
, which is implemented for,
inter alia, arrays:
rust
use lis::LisExt;
assert_eq!([2, 1, 4, 3, 5].longest_increasing_subsequence(), [1, 3, 4]);
Diffing two lists can be done with diff_by_key
:
```rust
use lis::{diffbykey, DiffAction}; use std::ops::{Generator, GeneratorState}; let mut generator = diffbykey(1..2, 1..3, |x| x); asserteq!(unsafe { generator.resume() }, GeneratorState::Yielded(DiffAction::Unchanged(1, 1))); asserteq!(unsafe { generator.resume() }, GeneratorState::Yielded(DiffAction::Insert(2))); assert_eq!(unsafe { generator.resume() }, GeneratorState::Complete(())); ```