验证有关图的信息

时间:2018-08-08 03:47:41

标签: java graph file-get-contents tostring vertex-array-object

尝试使用toString方法打印Graph的内容时遇到困难。此外,将顶点添加到图形中时,我没有收到错误,但不确定是否正确添加了顶点。谢谢任何人的帮助!

这是应用程序。

public class App 
{
public static void main(String[] args)
{
    File EdgeFile = new File("/User/src/main/java/edu.sdsu.cs/datastructures/threeVertexList.csv");
    File VertexFile = new File("User/src/main/java/edu.sdsu.cs/datastructures/threeEdgesList.csv");

    if (EdgeFile.exists() && EdgeFile.isFile() && VertexFile.exists() && VertexFile.isFile())   // Checks to see if Files are in existence
        {
            IGraph<String, Integer> Graph = new WDGraph<>();    // Instantiating the Graph
            BufferedReader in = null;

            try {
                in = new BufferedReader(new FileReader("cities.csv"));
                String read = null;

                while ((read = in.readLine()) != null) {
                    String[] split = read.split(",");

                    for (String part : split) {
                        Graph.addVertex(part);
                    }
                }
            } catch (IOException e) {
                    System.out.println("There was a problem: " + e);
                    e.printStackTrace();
                } finally {
                    try {
                        in.close();
                    } catch (Exception e) {
                    }
            }
        }

    else
        {
            System.out.println("Error: Incorrect number of input arguments (0 or 2 expected), X provided");
        }

        toString(); // method to overwrite to check contents of Vertices
  }
}

这是我的图表。

class WDGraph<V,E> implements IGraph<V,E> {
private final List<IVertex> nodes;
private final List<IEdge> edges;

     WDGraph() {
        this.nodes = nodes;
        this.edges = edges;
    }

    private List<IVertex> getVertexes() {
        return nodes;
    }

    private List<IEdge> getEdges() {
        return edges;
    }

0 个答案:

没有答案