我的 IDDFS 算法使用邻接矩阵找到我的图的最短路径。它显示了解决方案的深度(我知道这是从起点到终点连接在一起的点数)。
我想在数组中获取这些点。
例如:
假设在深度 5 中找到了解决方案,所以我想要一个带有点的数组:{0,2,3,4,6}。
深度 3:数组 {1,2,3}。
这是C ++中的算法:(
我不确定该算法是否“知道”在搜索时是否再次访问了访问过的点-我几乎是图形的初学者)
int DLS(int node, int goal, int depth,int adj[9][9])
{
int i,x;
if ( depth >= 0 )
{
if ( node == goal )
return node;
for(i=0;i<nodes;i++)
{
if(adj[node][i] == 1)
{
child = i;
x = DLS(child, goal, depth-1,adj);
if(x == goal)
return goal;
}
}
}
return 0;
}
int IDDFS(int root,int goal,int adj[9][9])
{
depth = 0;
solution = 0;
while(solution <= 0 && depth < nodes)
{
solution = DLS(root, goal, depth,adj);
depth++;
}
if(depth == nodes)
return inf;
return depth-1;
}
int main()
{
int i,u,v,source,goal;
int adj[9][9] = {{0,1,0,1,0,0,0,0,0},
{1,0,1,0,1,0,0,0,0},
{0,1,0,0,0,1,0,0,0},
{1,0,0,0,1,0,1,0,0},
{0,1,0,1,0,1,0,1,0},
{0,0,1,0,1,0,0,0,1},
{0,0,0,1,0,0,0,1,0},
{0,0,0,0,1,0,1,0,1},
{0,0,0,0,0,1,0,1,0}
};
nodes=9;
edges=12;
source=0;
goal=8;
depth = IDDFS(source,goal,adj);
if(depth == inf)printf("No solution Exist\n");
else printf("Solution Found in depth limit ( %d ).\n",depth);
system("PAUSE");
return 0;
}
我使用 IDDFS 而不是其他寻路算法的原因是我想将深度更改为指定的数字以搜索精确长度的路径(但我不确定这是否可行)。
如果有人建议使用邻接矩阵查找指定长度的路径的其他算法,请告诉我。