1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
use crate::indexed_vec::{Idx, IndexVec};
use crate::graph::{DirectedGraph, WithNumNodes, WithNumEdges, WithSuccessors, GraphSuccessors};
#[cfg(test)]
mod tests;
pub struct VecGraph<N: Idx> {
    
    
    
    
    
    
    
    node_starts: IndexVec<N, usize>,
    edge_targets: Vec<N>,
}
impl<N: Idx> VecGraph<N> {
    pub fn new(
        num_nodes: usize,
        mut edge_pairs: Vec<(N, N)>,
    ) -> Self {
        
        edge_pairs.sort();
        let num_edges = edge_pairs.len();
        
        let edge_targets: Vec<N> = edge_pairs.iter().map(|&(_, target)| target).collect();
        
        
        
        
        
        
        let mut node_starts = IndexVec::with_capacity(num_edges);
        for (index, &(source, _)) in edge_pairs.iter().enumerate() {
            
            
            
            
            
            
            
            
            
            
            
            while node_starts.len() <= source.index() {
                node_starts.push(index);
            }
        }
        
        
        
        
        
        
        
        
        
        
        while node_starts.len() <= num_nodes {
            node_starts.push(edge_targets.len());
        }
        assert_eq!(node_starts.len(), num_nodes + 1);
        Self { node_starts, edge_targets }
    }
    
    pub fn successors(&self, source: N) -> &[N] {
        let start_index = self.node_starts[source];
        let end_index = self.node_starts[source.plus(1)];
        &self.edge_targets[start_index..end_index]
    }
}
impl<N: Idx> DirectedGraph for VecGraph<N> {
    type Node = N;
}
impl<N: Idx> WithNumNodes for VecGraph<N> {
    fn num_nodes(&self) -> usize {
        self.node_starts.len() - 1
    }
}
impl<N: Idx> WithNumEdges for VecGraph<N> {
    fn num_edges(&self) -> usize {
        self.edge_targets.len()
    }
}
impl<N: Idx> GraphSuccessors<'graph> for VecGraph<N> {
    type Item = N;
    type Iter = std::iter::Cloned<std::slice::Iter<'graph, N>>;
}
impl<N: Idx> WithSuccessors for VecGraph<N> {
    fn successors<'graph>(
        &'graph self,
        node: N
    ) -> <Self as GraphSuccessors<'graph>>::Iter {
        self.successors(node).iter().cloned()
    }
}