demo/kruskal_demo.cc
changeset 1583 2b329fd595ef
parent 1580 a9e4208cf4e3
child 1584 cf4bc8d477f4
equal deleted inserted replaced
2:d7d7d646e97d 3:663dfa9c35dc
    16 
    16 
    17 ///\ingroup demos
    17 ///\ingroup demos
    18 ///\file
    18 ///\file
    19 ///\brief Minimum weight spanning tree by Kruskal algorithm (demo).
    19 ///\brief Minimum weight spanning tree by Kruskal algorithm (demo).
    20 ///
    20 ///
    21 ///This demo program shows how to find a minimum weight spannin tree
    21 /// This demo program shows how to find a minimum weight spanning tree
    22 ///of a graph by using the Kruskal algorithm. 
    22 /// in a graph by using the Kruskal algorithm. 
    23 
    23 
    24 #include <iostream>
    24 #include <iostream>
    25 #include <vector>
    25 #include <vector>
    26 
    26 
    27 #include <lemon/maps.h>
    27 #include <lemon/maps.h>