Class DiGraph

  • All Implemented Interfaces:
    java.lang.Cloneable

    public class DiGraph
    extends java.lang.Object
    implements java.lang.Cloneable
    • Constructor Summary

      Constructors 
      Constructor Description
      DiGraph()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void add_edge​(int i, int j, char c)  
      void add_nodes_from​(int numberOfNodes)  
      DiGraph clone()  
      • Methods inherited from class java.lang.Object

        equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DiGraph

        public DiGraph()
    • Method Detail

      • add_nodes_from

        public void add_nodes_from​(int numberOfNodes)
      • add_edge

        public void add_edge​(int i,
                             int j,
                             char c)
      • clone

        public DiGraph clone()
        Overrides:
        clone in class java.lang.Object