Created
January 14, 2020 15:33
-
-
Save hasibul-hasan-shuvo/4d80185131c3bd283bf1480c1c6dbf7e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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