algods 0.1.0

A collection of data structures and algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Defines the orientation of a priority queue (min oriented or max oriented)
#[derive(Debug, Clone)]
pub enum Orientation {
    /// Max-oriented priority queue
    Max,
    /// Min-oriented priority queue
    Min,
}

impl Default for Orientation {
    fn default() -> Self {
        Self::Max
    }
}