Пример #1
0
        public Graph(string pathToConnections, string pathToNodes)
        {
            ManageFile mf = new ManageFile();

            Edges    = mf.GetAdjacencyList(pathToConnections);
            NodeList = mf.GetNodes(pathToNodes);
        }