Esempio n. 1
0
        private void LeituraArquivo(ref List <Vertice> _listaVertices, ref string[] _vetorBinario)
        {
            try
            {
                Grafo grafo;

                string[]      lines = File.ReadAllLines(@"ArquivoGrafos.txt");
                List <String> dados = new List <string>();
                string[]      separador;
                List <Aresta> ListaAresta = new List <Aresta>();

                //Lendo a primeira linha do arquivo em tempo de execução.
                int numVertices = 0, numAresta = 0, cont = 0;
                separador   = lines[0].Split(' ');
                numVertices = int.Parse(separador[0]); numAresta = int.Parse(separador[1]);
                //Criado o vetor de binários, correspondente ao número de vertices. Este bin será o código de cada torre.
                _vetorBinario = new string[numVertices];

                for (int i = 1; i < lines.Length; i++)
                {
                    if (i >= (numAresta + 1))
                    {
                        _vetorBinario[cont] = lines[i];
                        cont++;
                    }
                    else
                    {
                        separador = lines[i].Split(' ');
                        Aresta aresta = new Aresta(int.Parse(separador[0]), int.Parse(separador[1]), lines[i]);
                        ListaAresta.Add(aresta);
                    }
                }
                grafo          = new Grafo(ListaAresta);
                _listaVertices = grafo.Lista_ADJ_Vertice;
                if (numAresta != ListaAresta.Count)
                {
                    throw new Exception("Valores diferentes");
                }
            }
            catch (Exception e) when(e.Message == "Valores diferentes")
            {
                string texto = "A quantidade de elementos na 'Lista de adjacência' é diferente" +
                               " da quantidade de elementos na 'Lista de Arestas'." +
                               "\n\n Verifique o método de leitura do arquivo" +
                               "\n\n " + e.ToString();
                string titulo = "Erro na quantidade de elementos";

                MessageBox.Show(texto, titulo, MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
Esempio n. 2
0
 public Aresta(Aresta _aresta)
 {
     this.v1          = _aresta.v1;
     this.v2          = _aresta.v2;
     this.textoAresta = _aresta.textoAresta;
 }