我无法为我的程序创建深度优先搜索。到目前为止,我有一类边和一类区域。我想将所有连接的边存储在我所在区域的一个节点内。我可以判断我已经实现的 getKey() 函数是否连接了某些东西。如果两条边具有相同的键,则它们是连接的。对于下一个区域,我想在该区域内存储另一组连接的边,等等。但是,我并不完全了解 DFS,并且在实现它时遇到了一些麻烦。我不确定何时/何地再次调用 DFS。任何帮助,将不胜感激!
class edge
{
private:
int source, destination, length;
int key;
edge *next;
public:
getKey(){ return key; }
}
class region
{
edge *data;
edge *next;
region() { data = new edge(); next = NULL; }
};
void runDFS(int i, edge **edge, int a)
{
region *head = new region();
aa[i]->visited == true;//mark the first vertex as true
for(int v = 0; v < a; v++)
{
if(tem->edge[i].getKey() == tem->edge[v].getKey()) //if the edges of the vertex have the same root
{
if(head->data == NULL)
{
head->data = aa[i];
head->data->next == NULL;
} //create an edge
if(head->data)
{
head->data->next = aa[i];
head->data->next->next == NULL;
}//if there is already a node connected to ti
}
if(aa[v]->visited == false)
runDFS(v, edge, a); //call the DFS again
} //for loop
}