Struct nekolib::seq::KmpSearcher
source · pub struct KmpSearcher<T: Eq> { /* private fields */ }
Expand description
KMP 法 (Knuth–Morris–Pratt algorithm)。
文字列 を入力とする。 各 () の最長 border と最長 tagged border の長さを求める。該当する border が存在しない要素は とする。
文字列 の border とは、 の真部分文字列であり、 の接頭辞かつ接尾辞であるような文字列である。
文字列 の border () が を満たすとき、 は の tagged border (strict border, strong border) であると言う。ただし、 は 中に含まれない文字として定義する。
0 1 2 3 4 5 6 7 8 9 ...
+-------------------+-------+
S | a a b a c a a b a | c ... |
+-------------------+-------+
この例において、 は の border だが tagged border ではない ()。一方、 は tagged border である ()。
この tagged border を用いることで、パターン検索を高速に行う。
Idea
tagged border を 時間で求める方法と、パターン検索を 時間で行う方法について書く。
Implementation notes
パターンが静的な場合であれば最長 border を求める必要はない。 パターンの末尾に対する push のみを考慮する場合も同様のはず。 ここではパターンの末尾に対する pop を行える実装になっており、その更新の際には最長 border の長さが必要になるはず。
Complexity
構築は 時間。パターン末尾における更新は 時間。 ただし、末尾への追加はこれに worst (amortized ) 時間が加わる。
References
- Knuth, D. E., Morris, Jr, J. H., & Pratt, V. R. (1977). Fast pattern matching in strings. SIAM journal on computing, 6(2), 323-350.
See also
Implementations§
source§impl<T: Eq> KmpSearcher<T>
impl<T: Eq> KmpSearcher<T>
pub fn occurrences<'a>(&'a self, s: &'a [T]) -> Occurrences<'a, T> ⓘ
Trait Implementations§
source§impl<T: Clone + Eq> Clone for KmpSearcher<T>
impl<T: Clone + Eq> Clone for KmpSearcher<T>
source§fn clone(&self) -> KmpSearcher<T>
fn clone(&self) -> KmpSearcher<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: PartialEq + Eq> PartialEq<KmpSearcher<T>> for KmpSearcher<T>
impl<T: PartialEq + Eq> PartialEq<KmpSearcher<T>> for KmpSearcher<T>
source§fn eq(&self, other: &KmpSearcher<T>) -> bool
fn eq(&self, other: &KmpSearcher<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<T: Eq> PopBack for KmpSearcher<T>
impl<T: Eq> PopBack for KmpSearcher<T>
impl<T: Eq + Eq> Eq for KmpSearcher<T>
impl<T: Eq> StructuralEq for KmpSearcher<T>
impl<T: Eq> StructuralPartialEq for KmpSearcher<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for KmpSearcher<T>where T: RefUnwindSafe,
impl<T> Send for KmpSearcher<T>where T: Send,
impl<T> Sync for KmpSearcher<T>where T: Sync,
impl<T> Unpin for KmpSearcher<T>where T: Unpin,
impl<T> UnwindSafe for KmpSearcher<T>where T: UnwindSafe,
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