public Lien(Sommet x, Sommet y, int Cout) { this.x = x; this.y = y; this.Cout = Cout; }
public void set_x(Sommet x) { this.x = x; }
public void set_y(Sommet y) { this.y = y; }
public void Djikstra(Sommet Debut, Sommet Fin, List <Sommet> Noeds) { }