Package tilda.utils

Interface Graph.Visitor<T>

    • Method Detail

      • visitNode

        void visitNode​(int level,
                       int FirstMiddleLast,
                       T v,
                       java.util.List<T> Path)
                throws java.lang.Exception
        Parameters:
        level - The level, starting at 0 that you are being asked to print.
        FirstMiddleLast - 0 if First of level, -1 if middle of level, 1 if last of level.
        v - The value of the node
        Path - The path of node values
        Throws:
        java.lang.Exception