Euclidean Minimum Spanning Tree Without Triangulation

后端 未结 2 871
孤街浪徒
孤街浪徒 2021-01-25 23:16

I was looking through some text about finding the EMST (Euclidean MST) using Delaunay triangulation technique, but also read somewhere that the EMST can be found through a sweep

2条回答
  •  萌比男神i
    2021-01-25 23:45

    I think the simplest technique for finding Euclidean minimum spanning tree is Delaunay trinangulation, use Bowyer-Watson algorithm. It is very easy to implement, once you have that, you can just use something like Kruskal's algorithm, using the distance as the edge weight.

提交回复
热议问题