java.lang.Object
g0401_0500.s0427_construct_quad_tree.Node

public class Node extends Object
  • Field Details

    • 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 Details

    • Node

      public Node(boolean val, boolean isLeaf)
    • Node

      public Node(boolean val, boolean isLeaf, Node topLeft, Node topRight, Node bottomLeft, Node bottomRight)
  • Method Details