Trees

$$ \text{edges}\geq\text{nodes}-1\\\text{if edges}=\text{nodes}-1\rightarrow \text{graph is a tree } $$


Minimum Spanning Tree

Kruskals Algorithm

  1. Take smallest edge that reduces components to $n-1$
  2. Repeat 1. untill 1 component left / joined all components

Prims Algorithm

  1. Select outgoing edge with smallest weight
  2. Repeat 1.

Prims

Kruskals


Metrics for Complex Networks