algorithmz 1.1.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
//! `queue`
//!
//! The `queue` module containing queue related algorithms

/// The `max_sliding_window` algorithm
pub mod max_sliding_window;
pub use max_sliding_window::max_sliding_window;
/// The `moving_average` algorithm
pub mod moving_average;
pub use moving_average::MovingAverage;
/// The `reconstruct_queue` algorithm
pub mod reconstruct_queue;
pub use reconstruct_queue::reconstruct_queue;
/// The `zigzagiterator` algorithm
pub mod zigzagiterator;
pub use zigzagiterator::ZigZagIterator;