How to find two disjoint spanning trees of an undirected graph

前端 未结 4 922
抹茶落季
抹茶落季 2021-02-06 10:04

Is there any applicable approach to find two disjoint spanning trees of an undirected graph or to check if a certain graph has two disjoint spanning trees

4条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-06 10:49

    According to A Note on Finding Minimum-Cost Edge-Disjoint Spanning Trees, this can be solved in O(k2n2) where k is the number of disjoint spanning trees, and n is the number of vertices.

    Unfortunately, all but the first page of the article is behind a paywall.

提交回复
热议问题