124 releases (69 stable)

4.9.1 Feb 12, 2024
4.8.2 Jan 14, 2024
4.8.0 Dec 22, 2023
4.4.0 Nov 30, 2023
0.1.5 Dec 30, 2016

#30 in Algorithms

Download history 2114/week @ 2023-12-23 3380/week @ 2023-12-30 3781/week @ 2024-01-06 5688/week @ 2024-01-13 5725/week @ 2024-01-20 6969/week @ 2024-01-27 4967/week @ 2024-02-03 6294/week @ 2024-02-10 6615/week @ 2024-02-17 7118/week @ 2024-02-24 6475/week @ 2024-03-02 6114/week @ 2024-03-09 6301/week @ 2024-03-16 6185/week @ 2024-03-23 7462/week @ 2024-03-30 9258/week @ 2024-04-06

30,249 downloads per month
Used in 30 crates (26 directly)

Apache-2.0/MIT

190KB
3.5K SLoC

pathfinding

Current Version Documentation License: Apache-2.0/MIT

This crate implements several pathfinding, flow, and graph algorithms in [Rust][Rust]. The algorithms are generic over their arguments. See the documentation for more information about the various algorithms.

Using this crate

In your Cargo.toml, put:

[dependencies]
pathfinding = "4.9.1"

You can then pull your preferred algorithm (BFS in this example) using:

use pathfinding::prelude::bfs;

Example

We will search the shortest path on a chess board to go from (1, 1) to (4, 6) doing only knight moves.

use pathfinding::prelude::bfs;

#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
struct Pos(i32, i32);

impl Pos {
  fn successors(&self) -> Vec<Pos> {
    let &Pos(x, y) = self;
    vec![Pos(x+1,y+2), Pos(x+1,y-2), Pos(x-1,y+2), Pos(x-1,y-2),
         Pos(x+2,y+1), Pos(x+2,y-1), Pos(x-2,y+1), Pos(x-2,y-1)]
  }
}

static GOAL: Pos = Pos(4, 6);
let result = bfs(&Pos(1, 1), |p| p.successors(), |p| *p == GOAL);
assert_eq!(result.expect("no path found").len(), 5);

License

This code is released under a dual Apache 2.0 / MIT free software license.

Contributing

You are welcome to contribute by opening issues or submitting pull requests. Please open an issue before implementing a new feature, in case it is a work in progress already or it is fit for this repository.

In order to pass the continuous integration tests, your code must be formatted using the latest rustfmt with the nightly rust toolchain, and pass cargo clippy and pre-commit checks. Those will run automatically when you submit a pull request. You can install pre-commit to your checked out version of the repository by running:

$ pre-commit install --hook-type commit-msg

This repository uses the conventional commits commit message style, such as:

  • feat(matrix): add Matrix::transpose()
  • fix(tests): remove unused imports

If a pull-request should automatically close an open issue, please include "Fix #xxx# or "Close #xxx" in the pull-request cover-letter.

Dependencies

~1.3–2MB
~39K SLoC