-
-
Notifications
You must be signed in to change notification settings - Fork 447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dijkstra added #204
base: master
Are you sure you want to change the base?
dijkstra added #204
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some minor changes requested
void main() { | ||
List<List<int>> graph = [ | ||
[0, 4, 0, 0, 0, 0, 0, 8, 0], | ||
[4, 0, 8, 0, 0, 0, 0, 11, 0], | ||
[0, 8, 0, 7, 0, 4, 0, 0, 2], | ||
[0, 0, 7, 0, 9, 14, 0, 0, 0], | ||
[0, 0, 0, 9, 0, 10, 0, 0, 0], | ||
[0, 0, 4, 14, 10, 0, 2, 0, 0], | ||
[0, 0, 0, 0, 0, 2, 0, 1, 6], | ||
[8, 11, 0, 0, 0, 0, 1, 0, 7], | ||
[0, 0, 2, 0, 0, 0, 6, 7, 0] | ||
]; | ||
Dijkstra dij = new Dijkstra(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please add few test cases?
void printSolution(List<int> dist) { | ||
print("Vertex Distance from Source"); | ||
for (int i = 0; i < dist.length; i++) { | ||
print(i.toString() + " ------------> " + dist[i].toString()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
avoid print statements
@@ -0,0 +1,57 @@ | |||
const int MAX_VALUE = 1000000; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a reference link to checkout the algorithm (ex: Wikipedia link to dijkstra)
Welcome to Dart community
Describe your change:
Checklist:
Fixes: #{$ISSUE_NO}
.