Lusien_Lashans

Dijkstra Edge

May 2nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. package com.company;
  2.  
  3. public  class Edge {
  4.     public int s, t, cost;
  5.  
  6.     public Edge(int s, int t, int cost) {
  7.         this.s = s;
  8.         this.t = t;
  9.         this.cost = cost;
  10.     }
  11. }
Add Comment
Please, Sign In to add comment