Class Node


  • public class Node
    extends Object
    • Field Detail

      • val

        public boolean val
      • isLeaf

        public boolean isLeaf
      • topLeft

        public Node topLeft
      • topRight

        public Node topRight
      • bottomLeft

        public Node bottomLeft
      • bottomRight

        public Node bottomRight
    • Constructor Detail

      • Node

        public Node​(boolean val,
                    boolean isLeaf)
      • Node

        public Node​(boolean val,
                    boolean isLeaf,
                    Node topLeft,
                    Node topRight,
                    Node bottomLeft,
                    Node bottomRight)