Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. package graph;
  2.  
  3. class Edge {
  4. int startString;
  5. int endString;
  6. String operation;
  7. int weight;
  8. Edge (int startNodeString, int endNodeString, String operand, int weightValue) {
  9. startString = startNodeString;
  10. endString = endNodeString;
  11. weight = weightValue;
  12. operation = operand;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement