gpt4 book ai didi

algorithm - 最小生成树的运行时间? (原始方法)

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:15:52 24 4
gpt4 key购买 nike

我编写了一个使用 Prim 方法求解 MST 的代码。我读到这种实现(使用优先级队列)应该有 O(E + VlogV) = O(VlogV) 其中 E 是边数和 V 边数但是当我看我的代码时它根本不看那样。如果有人能为我解决这个问题,我将不胜感激。

在我看来运行时间是这样的:

while 循环需要 O(E) 次(直到我们遍历所有边)在该循环中,我们从 Q 中提取一个元素,这需要 O(logE) 时间。第二个内部循环需要 O(V) 时间(虽然我们不是每次都运行这个循环很明显,它将运行 V 次,因为我们必须添加所有顶点)

我的结论是运行时间是:O( E(logE+V) ) = O( E*V )。

这是我的代码:

#define p_int pair < int, int >

int N, M; //N - nmb of vertices, M - nmb of edges
int graph[100][100] = { 0 }; //adj. matrix
bool in_tree[100] = { false }; //if a node if in the mst
priority_queue< p_int, vector < p_int >, greater < p_int > > Q;
/*
keeps track of what is the smallest edge connecting a node in the mst tree and
a node outside the tree. First part of pair is the weight of the edge and the
second is the node. We dont remember the parent node beaceuse we dont need it :-)
*/

int mst_prim()
{
Q.push( make_pair( 0, 0 ) );

int nconnected = 0;
int mst_cost = 0;
while( nconnected < N )
{
p_int node = Q.top(); Q.pop();

if( in_tree[ node.second ] == false )
{
mst_cost += node.first;
in_tree[ node.second ] = true;

for( int i = 0; i < N; ++i )
if( graph[ node.second ][i] > 0 && in_tree[i]== false )
Q.push( make_pair( graph[ node.second ][i], i ) );

nconnected++;
}
}

return mst_cost;
}

最佳答案

您可以使用邻接表来加快您的解决方案(但不适用于密集图),但即便如此,如果没有斐波那契堆,您也不会得到 O(V log V)..

也许是 Kruskal algorithm你会更容易理解。它没有优先级队列,您只需对边数组进行一次排序。基本上是这样的:

  • 将所有边插入到一个数组中,并按权重排序
  • 遍历排序后的边,对于连接节点 i 和 j 的每条边,检查 i 和 j 是否相连。如果是,则跳过边,否则将边添加到 MST。

唯一的问题是能够快速判断两个节点是否已连接。为此,您使用 Union-Find 数据结构,如下所示:

int T[MAX_#_OF_NODES]

int getParent(int a)
{
if (T[a]==-1)return a;
return T[a]=getParent(T[a]);
}
void Unite(int a,int b)
{
if (rand()&1)
T[a]=b;
else
T[b]=a;
}

一开始只是把T初始化为全-1,然后每次想知道节点A和B是否连通,只要比较它们的父节点——如果相同则连通(像这样getParent(A)==getParent(B))。将边插入 MST 时,请确保使用 Unite(getParent(A),getParent(B)) 更新 Union-Find。

分析很简单,您对边进行排序并使用采用 O(1) 的 UF 进行迭代。所以 O(E logE + E ) 等于 O(E log E)。

就是这样;-)

关于algorithm - 最小生成树的运行时间? (原始方法),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1763649/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com