Created
March 29, 2010 01:32
-
-
Save viksit/347234 to your computer and use it in GitHub Desktop.
This file contains 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
struct edge { | |
vertex_t target; | |
weight_t weight; | |
edge(vertex_t arg_target, weight_t arg_weight) | |
: target(arg_target), weight(arg_weight) { } | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment