代码之家  ›  专栏  ›  技术社区  ›  Graham Slick

在jgrapht中使用predecessorListOf时出错

  •  -1
  • Graham Slick  · 技术社区  · 9 年前

    我使用jgrapht库创建了一个有向图,添加了一些顶点和边。我无法在我的程序中使preducerListOf方法正常工作。我做了一个非常简单的例子,试图找出问题所在,但同样的问题是,该函数不存在:

    import java.util.*; 
    import java.util.List;
    import java.util.Arrays;
    import java.util.Scanner;
    import java.io.*;
    import org.jgrapht.alg.*;
    import org.jgrapht.demo.*;
    import org.jgrapht.*;
    import org.jgrapht.graph.*;
    import org.jgrapht.graph.DefaultEdge;
    import org.jgrapht.alg.*;
    import org.jgrapht.experimental.dag.*;
    
    
    public static DirectedGraph<Point, DefaultEdge> directedGraph = new DefaultDirectedGraph<Point, DefaultEdge>(DefaultEdge.class);
    public static Point firstPoint = new Point(2, 7);
    public static Point secondPoint = new Point(2, 8);
    public static Point thirdPoint = new Point(2, 9);
    public static Point fourthPoint = new Point(2, 4);
    
    
    void setup ()  {
      directedGraph.addVertex(firstPoint);
      directedGraph.addVertex(secondPoint);
      directedGraph.addVertex(thirdPoint);
      directedGraph.addVertex(fourthPoint);
      directedGraph.addEdge(firstPoint, secondPoint);
      directedGraph.addEdge(secondPoint, thirdPoint);
      directedGraph.addEdge(thirdPoint, fourthPoint);
    
      System.out.println(predecessorListOf(directedGraph, fourthPoint));
    }
    
    // --------------------------------------------------------------
    public static ArrayList<Point> pointList = new ArrayList<Point>();
    public static class Point {
    
      public int x;
      public int y;
    
      public  Point(int x, int y) 
      {
    
        this.x = x;
        this.y = y;
      }
      @Override
        public String toString() {
        return ("[x="+x+" y="+y+"]");
      }
    
      @Override
        public int hashCode() {
        int hash = 7;
        hash = 71 * hash + this.x;
        hash = 71 * hash + this.y;
        return hash;
      }
    
    
    
      @Override
        public boolean equals(Object other) 
      {
        if (this == other)
          return true;
    
        if (!(other instanceof Point))
          return false;
    
        Point otherPoint = (Point) other;
        return otherPoint.x == x && otherPoint.y == y;
      }
    }
    

    有人知道我错过了什么吗?

    1 回复  |  直到 9 年前
        1
  •  0
  •   Kevin Workman    9 年前

    与其他问题一样,JGraphT API是答案: http://jgrapht.org/javadoc/org/jgrapht/Graphs.html

    这个 predecessorListOf() 函数是 Graphs

    这意味着你不能直接打电话 前置处理器ListOf() 就像你想做的那样。您必须包括 类,这样Processing就知道在哪里找到函数:

    Graphs.predecessorListOf(directedGraph, fourthPoint);