#flexible #step #bisection #stateless #data #bisect #type

bisector

Flexible bisect implementatation which allows the use the bisection method on arbitrary data types

4 releases (breaking)

0.4.0 May 25, 2022
0.3.0 Jan 27, 2022
0.2.0 Jan 26, 2022
0.1.0 Jan 26, 2022

#1213 in Algorithms

Download history 1422/week @ 2023-12-18 1337/week @ 2023-12-25 1416/week @ 2024-01-01 1654/week @ 2024-01-08 1411/week @ 2024-01-15 1920/week @ 2024-01-22 1664/week @ 2024-01-29 1556/week @ 2024-02-05 1768/week @ 2024-02-12 1511/week @ 2024-02-19 1667/week @ 2024-02-26 1710/week @ 2024-03-04 1622/week @ 2024-03-11 1593/week @ 2024-03-18 1303/week @ 2024-03-25 1299/week @ 2024-04-01

6,096 downloads per month
Used in cargo-msrv

Apache-2.0 OR MIT

46KB
609 lines

Bisector

Overview

A flexible, stateless implementation of the bisection method.

Flexibility is achieved by giving the user of this crate control over the input and output types. That is, this implementation is not limited to numeric types. In addition, the implementation is stateless. The Bisector struct on which the bisect methods are implemented does not hold internal mutable state of the last step. This gives the user the option to re-execute a step, or really perform any step in the order the user desires (although incremental steps may be most logical still 😅).

The lack of internal mutable state also allows the implementation to take a shared reference (&self), instead of an exclusive reference (&mut self), which is convenient when dealing with ownership in many cases, and was the original reason behind this crate.

Install

Cargo

  1. Last published version on crates.io (recommended):

Add the bisector crate to list of dependencies in your Cargo manifest (Cargo.toml):

[dependencies]
bisector = "*" # replace `*` with latest version
  1. Last development version on GitHub:

Add the bisector crate to list of dependencies in your Cargo manifest (Cargo.toml):

[dependencies]
bisector = { git = "https://github.com/foresterre/bisector.git" }

MSRV

The Minimal Supported Rust Version was determined with cargo-msrv, and is verified on the during CI runs. The table below lists the MSRV for the current and historical versions of bisector.

bisector version MSRV
0.1.0 N/A
0.2.0 N/A
0.3.0 1.37
0.4.0 1.37

Examples

Example 1

fn main() {
    let values = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
    let bisector = Bisector::new(&values);

    let start_from = Indices::from_bisector(&bisector);

    // In this example, we'll manually step through the bisection (i.e. without a loop).

    // (1) We use the default starting indices (i.e. left = 0, right = |values| - 1 = 9);
    let step: Step<u32, u32> = bisector.bisect(|&value| ConvergeTo::Left(value), start_from);

    // We converge to the left, so our view of values will be halved to the left half.
    assert_eq!(step.indices, Indices::new(0, 4));
    assert_eq!(step.result.unwrap().try_into_left().unwrap(), 5);

    // (2) Now we use the next indices produced by step, to progress our bisection: step.indices
    //      Because we zig-zag, we'll now converge to the right
    let step: Step<u32, u32> = bisector.bisect(|&value| ConvergeTo::Right(value), step.indices);

    // We converge to the right, so our view of values will be halved to the right half of our previous
    // view.
    assert_eq!(step.indices, Indices::new(3, 4));
    assert_eq!(step.result.unwrap().try_into_right().unwrap(), 3);

    // (3) Step further: zig-zag left
    let final_step: Step<u32, u32> =
        bisector.bisect(|&value| ConvergeTo::Left(value), step.indices);

    assert_eq!(final_step.indices, Indices::new(3, 3));
    assert_eq!(final_step.result.unwrap().try_into_left().unwrap(), 4);

    // (4a) Step a one more time to check we are at the end: left
    let step: Step<u32, u32> =
        bisector.bisect(|&value| ConvergeTo::Left(value), final_step.indices);

    assert_eq!(step.indices, Indices::new(3, 3));
    assert!(step.result.is_none());

    // (4b) Step a one more time to check we are at the end: right
    let step: Step<u32, u32> =
        bisector.bisect(|&value| ConvergeTo::Right(value), final_step.indices);

    assert_eq!(step.indices, Indices::new(3, 3));
    assert!(step.result.is_none());
}

Example 2

// NB: output held by ConvergeTo does *not* need to be of the same type as
// the value. In this example, it just happens to be the case.
fn f(value: u32) -> ConvergeTo<u32, u32> {
    if value >= 5 && value <= 6 {
        ConvergeTo::Right(value)
    } else {
        ConvergeTo::Left(value)
    }
}

fn main() {
    let values = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];

    let bisector = Bisector::new(&values);
    let mut elements_seen = vec![];
    let mut value = None;

    let mut i = Indices::from_bisector(&bisector);
    while let Step {
        indices,
        result: Some(t),
    } = bisector.bisect(|&v| f(v), i)
    {
        i = indices;

        let val = match t {
            ConvergeTo::Left(l) => l,
            ConvergeTo::Right(r) => r,
        };

        elements_seen.push(val);
        value = Some(val);
    }

    println!("{:?}", elements_seen);
    println!("Final converged to '{}'", value.unwrap());
}

Example: bisect in cargo msrv

A more contrived example can be found in cargo msrv.

NB: Linked revision was implemented before Bisector::try_bisect was added. To cover a fallible case in the convergence function, you may want to use Bisector::try_bisect over Bisector::bisect.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps