コード例 #1
0
 public ListaDeAdyacencia(Grafo grafo)
 {
     this.grafo = grafo;
     InitializeComponent();
 }
コード例 #2
0
 public AristasBBP(Grafo grafo)
 {
     this.grafo = grafo;
     InitializeComponent();
 }
コード例 #3
0
 public Corolarios(Grafo grafo)
 {
     texto      = "null";
     this.grafo = grafo;
     InitializeComponent();
 }
コード例 #4
0
 public Corolarios(Grafo grafo, string texto)
 {
     this.grafo = grafo;
     this.texto = texto;
     InitializeComponent();
 }
コード例 #5
0
 public Kuratowski(Grafo grafo)
 {
     this.grafo = grafo;
     InitializeComponent();
 }