示例#1
0
 public Lien(Sommet x, Sommet y, int Cout)
 {
     this.x    = x;
     this.y    = y;
     this.Cout = Cout;
 }
示例#2
0
 public void set_x(Sommet x)
 {
     this.x = x;
 }
示例#3
0
 public void set_y(Sommet y)
 {
     this.y = y;
 }
示例#4
0
 public void Djikstra(Sommet Debut, Sommet Fin, List <Sommet> Noeds)
 {
 }