99 艾姆问题/第 84 题
外观
< 99 艾姆问题
找到图的最小生成树。/提示:使用 Prim 算法。对问题解决方案进行小修改就可以了。
# # # 这是一个存根 # # #
Example in Elm:
import Html exposing (text)
import List
f : Int -> Int
-- your implementation goes here
main = text (toString (f 0))
结果
4
找到图的最小生成树。/提示:使用 Prim 算法。对问题解决方案进行小修改就可以了。
# # # 这是一个存根 # # #
Example in Elm:
import Html exposing (text)
import List
f : Int -> Int
-- your implementation goes here
main = text (toString (f 0))
结果
4