예제 #1
0
 public LazyPrimMST(IEdgeWeightedGraph graph)
 {
     this.graph = graph;
     this.marked = new bool[graph.VerticesCount];
 }
예제 #2
0
 public KurskalMST(IEdgeWeightedGraph graph)
 {
     this.graph = graph;
 }