0427. Construct Quad Tree
Description
class Node {
public boolean val;
public boolean isLeaf;
public Node topLeft;
public Node topRight;
public Node bottomLeft;
public Node bottomRight;
}

ac
Previous0426. Convert Binary Search Tree to Sorted Doubly Linked ListNext0428. Serialize and Deserialize N-ary Tree
Last updated
