Skip to content

Latest commit

 

History

History
42 lines (22 loc) · 991 Bytes

0894-all-possible-full-binary-trees.adoc

File metadata and controls

42 lines (22 loc) · 991 Bytes

894. All Possible Full Binary Trees

{leetcode}/problems/all-possible-full-binary-trees/[LeetCode - All Possible Full Binary Trees^]

A full binary tree is a binary tree where each node has exactly 0 or 2 children.

Return a list of all possible full binary trees with N nodes. Each element of the answer is the root node of one possible tree.

Each node of each tree in the answer must have node.val = 0.

You may return the final list of trees in any order.

Example 1:

Input: 7
Output: [[0,0,0,null,null,0,0,null,null,0,0],[0,0,0,null,null,0,0,0,0],[0,0,0,0,0,0,0],[0,0,0,0,0,null,null,null,null,0,0],[0,0,0,0,0,null,null,0,0]]
Explanation:

image::https://s3-lc-upload.s3.amazonaws.com/uploads/2018/08/22/fivetrees.png[{image_attr}]

Note:

  • 1 ⇐ N ⇐ 20

link:{sourcedir}/_0894_AllPossibleFullBinaryTrees.java[role=include]