版本 9bdd177877f0158e0fc1b75041473af8711958e0
acm/course/MST
Changes from 9bdd177877f0158e0fc1b75041473af8711958e0 to 75e100d104541da8de03b306ef81497167c9a16f
#MST(Minimum Spanning Tree, 最小生成樹) ##Spanning Tree ##Minimum Spanning Tree ###Kruskal’s algorithm *Psuedocode ###Prim’s algorithm ```C++ #include <cstdio> using namespace std; int main() { } ``` #