algorithmz 1.2.5

This is the corresponding implemenation of the python module of the same name.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! `stack`
//!
//! `stack` is a submodule containing algorithms for stack operations

/// The `is_consecutive` algorithm
pub mod is_consecutive;
pub use is_consecutive::is_consecutive;
/// TheĀ `is_sorted` algorithm
pub mod is_sorted;
pub use is_sorted::is_sorted;
/// The `longest_path` algorithm
pub mod longest_path;
pub use longest_path::longest_path;
/// The `OrderedStack` implementation
pub mod ordered_stack;
pub use ordered_stack::OrderedStack;