Skip to main content

stdlib_rs/collections/
mod.rs

1pub mod first;
2/// A Minimum Stack data structure.
3/// A minimum stack has O(1) appends and O(1) pops.
4/// As well, the Minimum stack returns the minimum element in the stack in O(1) time.
5pub mod min_stack;
6/// A queue implemented with two stacks.
7pub mod queue_with_stack;
8pub mod second;
9pub mod stack_with_queue;