Struct nekolib::algo::ExactCover
source · pub struct ExactCover { /* private fields */ }
Expand description
Exact cover。
行 列の 0/1 行列 が与えられたとき、行 の部分集合 であって、各列 に対して なる がちょうど 1 つ存在するものを探す。
のような行列 に対しては、 が解となる。
Idea
Dancing links と呼ばれるデータ構造を用いる。
todo!()
Examples
use nekolib::algo::ExactCover;
let a = vec![
vec![0, 0, 1, 0, 1, 1, 0],
vec![1, 0, 0, 1, 0, 0, 1],
vec![0, 1, 1, 0, 0, 1, 0],
vec![1, 0, 0, 1, 0, 0, 0],
vec![0, 1, 0, 0, 0, 0, 1],
vec![0, 0, 0, 1, 1, 0, 1],
];
let ec = ExactCover::from_matrix(&a);
assert_eq!(ec.any(), Some(vec![3, 0, 4]));
References
Implementations§
Trait Implementations§
source§impl Default for ExactCover
impl Default for ExactCover
source§fn default() -> ExactCover
fn default() -> ExactCover
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ExactCover
impl Send for ExactCover
impl Sync for ExactCover
impl Unpin for ExactCover
impl UnwindSafe for ExactCover
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more