-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
Coding_Practice/data_structure/Graph.cpp
Lines 353 to 359 in 514d728
| for (int adjecent = 0; adjecent < vertex; ++adjecent) { | |
| if (graph[n][adjecent] != MAXN && | |
| cost[n] + graph[n][adjecent] < cost[adjecent] ) { | |
| pi[adjecent] = n; | |
| cost[adjecent] = cost[n] + graph[n][adjecent]; | |
| } | |
| } |
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed