private void buttonPrim_Click(object sender, EventArgs e) { Grafo grafoPrim = grafoVuelos.prim(); FormGrafo ventanaGrafo = new FormGrafo(grafoPrim, false); ventanaGrafo.ShowDialog(); }
private void buttonKruskal_Click(object sender, EventArgs e) { Grafo grafoKruskal = new Grafo(listVuelos, 't'); grafoKruskal.cargarVertices(); FormGrafo ventanaGrafo = new FormGrafo(grafoKruskal.kruskal(), false); ventanaGrafo.ShowDialog(); }
private void buttonAgregar_Click(object sender, EventArgs e) { Vertice vertice; FormGrafo ventanaGrafo = new FormGrafo(grafoVuelos, true); ventanaGrafo.ShowDialog(); vertice = new Vertice(Convert.ToChar(textBoxNombre.Text), ventanaGrafo.getX(), ventanaGrafo.getY()); grafoVuelos.Add(vertice); actualizarListBox(); }
private void buttonAgregar_Click(object sender, EventArgs e) { bool duplicado = false; bool origenExisteEnGrafo, destinoExisteEnGrafo; origenExisteEnGrafo = destinoExisteEnGrafo = false; Vuelo vuelo = new Vuelo(Convert.ToChar(textBoxOrigen.Text), Convert.ToChar(textBoxDestino.Text), Int32.Parse(textBoxTiempo.Text), Int32.Parse(textBoxCosto.Text), dateTimePickerFechaSalida.Value); Arista arista1; int i, k; for (i = 0; i < listVuelos.Count; i++) { if (vuelo.getOrigen() == listVuelos[i].getOrigen() && vuelo.getDestino() == listVuelos[i].getDestino()) { duplicado = true; } } //********** if (!duplicado) { FormGrafo ventanaGrafo = new FormGrafo(grafoVuelos, true); Vertice vertice; for (i = 0; i < grafoVuelos.Count; i++) { if (grafoVuelos[i].getOrigen() == Convert.ToChar(textBoxOrigen.Text)) { origenExisteEnGrafo = true; break; } } for (k = 0; k < grafoVuelos.Count; k++) { if (grafoVuelos[k].getOrigen() == Convert.ToChar(textBoxDestino.Text)) { destinoExisteEnGrafo = true; break; } } if (origenExisteEnGrafo && destinoExisteEnGrafo) { arista1 = new Arista(grafoVuelos[i].getOrigen(), grafoVuelos[k].getOrigen(), vuelo.getCosto(), grafoVuelos[k].X, grafoVuelos[k].Y); grafoVuelos[i].getListAristas().Add(arista1); } else if (!origenExisteEnGrafo && destinoExisteEnGrafo) { arista1 = new Arista(vuelo.getOrigen(), grafoVuelos[k].getOrigen(), vuelo.getCosto(), grafoVuelos[k].X, grafoVuelos[k].Y); ventanaGrafo.ShowDialog(); vertice = new Vertice(Convert.ToChar(textBoxOrigen.Text), ventanaGrafo.getX(), ventanaGrafo.getY()); vertice.getListAristas().Add(arista1); grafoVuelos.Add(vertice); } else if (origenExisteEnGrafo && !destinoExisteEnGrafo) { ventanaGrafo.ShowDialog(); vertice = new Vertice(Convert.ToChar(textBoxDestino.Text), ventanaGrafo.getX(), ventanaGrafo.getY()); grafoVuelos.Add(vertice); arista1 = new Arista(grafoVuelos[i].getOrigen(), vertice.getOrigen(), vuelo.getCosto(), vertice.X, vertice.Y); grafoVuelos[i].getListAristas().Add(arista1); } else if (!origenExisteEnGrafo && !destinoExisteEnGrafo) { Vertice vertice2; ventanaGrafo.ShowDialog(); vertice = new Vertice(vuelo.getOrigen(), ventanaGrafo.getX(), ventanaGrafo.getY()); ventanaGrafo.ShowDialog(); vertice2 = new Vertice(vuelo.getDestino(), ventanaGrafo.getX(), ventanaGrafo.getY()); arista1 = new Arista(vertice.getOrigen(), vertice2.getOrigen(), vuelo.getCosto(), vertice2.X, vertice2.Y); vertice.getListAristas().Add(arista1); grafoVuelos.Add(vertice); grafoVuelos.Add(vertice2); } listVuelos.Add(vuelo); } //************* actualizarListViewVuelos(); }
private void buttonMapa_Click(object sender, EventArgs e) { FormGrafo ventanaGrafo = new FormGrafo(grafoVuelos, false); ventanaGrafo.ShowDialog(); }