Euclidean Minimum Spanning Tree Without Triangulat

2019-03-06 10:03发布

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 line algorithm. Since this would easier implementing, I would like to implement this rather than using a existing library. Can anyone guide me/ direct me to a link to a (possibly free) paper/source that has this algorithm explained?

2条回答
等我变得足够好
2楼-- · 2019-03-06 10:13

From this and going by the abstracts, this and this should get you started. They both use sweepline algorithms to obtain MST's

查看更多
爷、活的狠高调
3楼-- · 2019-03-06 10:23

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.

查看更多
登录 后发表回答