Skip to content

Instantly share code, notes, and snippets.

@hasibul-hasan-shuvo
Created January 14, 2020 15:33
Show Gist options
  • Select an option

  • Save hasibul-hasan-shuvo/4d80185131c3bd283bf1480c1c6dbf7e to your computer and use it in GitHub Desktop.

Select an option

Save hasibul-hasan-shuvo/4d80185131c3bd283bf1480c1c6dbf7e to your computer and use it in GitHub Desktop.
for(int node = 0; node < nodeNumber; node++){
if(!visitedNode[node] && visitedCost[node] < minCostedNode){
minNode = node;
minCostedNode = visitedCost[node];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment