//! `queue`
//!
//! The `queue` module containing queue related algorithms
/// The `max_sliding_window` algorithm
pub use max_sliding_window;
/// The `moving_average` algorithm
pub use MovingAverage;
/// The `reconstruct_queue` algorithm
pub use reconstruct_queue;
/// The `zigzagiterator` algorithm
pub use ZigZagIterator;