Euclidean Minimum Spanning Tree Without Triangulation

爱⌒轻易说出口 提交于 2019-12-04 05:51:20

问题


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?


回答1:


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




回答2:


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.



来源:https://stackoverflow.com/questions/13314681/euclidean-minimum-spanning-tree-without-triangulation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!