[][src]Struct adbfbinlib::data::bktree::BKTree

pub struct BKTree<K, V> where
    K: Distance
{ root: Option<BKTreeNode<K, V>>, }

BKTree structure that is used to store word like structures and perform "fuzzy" search on them to implement "do you mean" functionality on them. Can perform said search on any term that implements the distance trait. The default implementation is Osa distance.

Fields

root: Option<BKTreeNode<K, V>>

Implementations

impl<K, V> BKTree<K, V> where
    K: Distance
[src]

pub fn new() -> BKTree<K, V>[src]

Create a new BK Tree with an empty root.

pub fn new_from_vec(items: Vec<(K, V)>) -> BKTree<K, V>[src]

Create a new tree from the items in a Vector. Useful for inserting a lot of items from a file etc. Vector requires a Vec of tuples of K, V pairs where K implements Distance trait

pub fn insert(&mut self, key: K, value: V)[src]

Add a new (key, value) pair into the BKTree.

pub fn find(&self, key: &K, tolerence: usize) -> (Vec<&V>, Vec<&K>)[src]

Search for the closest Item to the key with a given tolerence. (Steps to get there) The return value is a tuple of 2 Vecs, where the first one has exact matches and the second are matches within the given tolerence.

A match is approximate if the distance between key1 and key2 are less than the given tolerence.

pub fn dfs(&self) -> Vec<(&K, &V)>[src]

Trait Implementations

impl<K: Default, V: Default> Default for BKTree<K, V> where
    K: Distance
[src]

Auto Trait Implementations

impl<K, V> RefUnwindSafe for BKTree<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe
[src]

impl<K, V> Send for BKTree<K, V> where
    K: Send,
    V: Send
[src]

impl<K, V> Sync for BKTree<K, V> where
    K: Sync,
    V: Sync
[src]

impl<K, V> Unpin for BKTree<K, V> where
    K: Unpin,
    V: Unpin
[src]

impl<K, V> UnwindSafe for BKTree<K, V> where
    K: UnwindSafe,
    V: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T

impl<T> Conv for T

impl<T> Erased for T

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> TryConv for T

impl<T> TryConv for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> With for T