algorithm
Graf Traversals
Sök…
Djup Första sökning genomgående funktion
Funktionen tar argumentet för det aktuella nodindexet, anpassningslistan (lagrad i vektor för vektorer i detta exempel) och vektorn från boolean för att hålla reda på vilken nod som har besökts.
void dfs(int node, vector<vector<int>>* graph, vector<bool>* visited) {
// check whether node has been visited before
if((*visited)[node])
return;
// set as visited to avoid visiting the same node twice
(*visited)[node] = true;
// perform some action here
cout << node;
// traverse to the adjacent nodes in depth-first manner
for(int i = 0; i < (*graph)[node].size(); ++i)
dfs((*graph)[node][i], graph, visited);
}
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow