Struct SparseGraph

Source
pub struct SparseGraph<'a> { /* private fields */ }
Expand description

A SparseGraph represents an unweighted graph with V nodes and E edges using the compressed sparse row format.

Implementations§

Source§

impl SparseGraph<'_>

Source

pub fn new<'a>(idxptr: &'a [usize], indices: &'a [usize]) -> SparseGraph<'a>

Returns a sparse graph.

§Arguments
  • idxptr - Starting index in indices for each vertex. These must be strictly non-decreasing and less than indices.len. The length defines the number of nodes in the graph, V
  • indices - Values in the range 0..V-1 indicating which nodes each vertex is linked to. The length defines the number edges in the graph, E.
§Panics
§Example
use sparse_graph::SparseGraph;

let (idxptr, indices) = (vec![0, 1, 3, 4, 5, 6], vec![1, 2, 3, 0, 4, 5, 3]);
let g = SparseGraph::new(&idxptr, &indices);
Source

pub fn scc(&self) -> ConnectedComponents<'_>

Computes the strongly connected components using a memory optimised version of Tarjan’s algorithm.

See http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.102.1707.

Returns

§Example
use sparse_graph::{SparseGraph, ConnectedComponents};

// Create a graph with two strongly connect components
let (idxptr, indices) = (vec![0, 1, 3, 4, 5, 6], vec![1, 2, 3, 0, 4, 5, 3]);
let g = SparseGraph::new(&idxptr, &indices);
let ConnectedComponents { n, labels, sparse_graph } = g.scc();
assert_eq!(n, 2);
assert_eq!(labels, [1, 1, 1, 0, 0, 0]);
assert!(std::ptr::eq(sparse_graph, &g))

Trait Implementations§

Source§

impl<'a> Debug for SparseGraph<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for SparseGraph<'_>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for SparseGraph<'a>

§

impl<'a> RefUnwindSafe for SparseGraph<'a>

§

impl<'a> Send for SparseGraph<'a>

§

impl<'a> Sync for SparseGraph<'a>

§

impl<'a> Unpin for SparseGraph<'a>

§

impl<'a> UnwindSafe for SparseGraph<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.