Euclidean Minimum Spanning Tree Without Triangulation

后端 未结 2 829
孤街浪徒
孤街浪徒 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条回答
  • 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.

    0 讨论(0)
  • 2021-01-26 00:03

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

    0 讨论(0)
提交回复
热议问题