0

我正在浏览一些关于使用 Delaunay 三角测量技术找到 EMST(欧几里得 MST)的文本,但也在某处读到可以通过扫描线算法找到 EMST。由于这更容易实现,我想实现它而不是使用现有的库。任何人都可以指导我/指导我到一个(可能是免费的)论文/资源的链接,该论文/资源解释了这个算法吗?

4

2 回答 2

2

这个和摘要来看,这个这个应该让你开始。他们都使用扫描线算法来获得 MST

于 2012-11-09T22:01:30.007 回答
0

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.

于 2017-04-29T16:23:23.400 回答