首页 > 其他 > 详细

[LeetCode] 894. All Possible Full Binary Trees 所有可能的满二叉树

时间:2019-05-30 22:56:18      阅读:203      评论:0      收藏:0      [点我收藏+]

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?Nnodes.? 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:
技术分享图片

Note:

  • 1 <= N <= 20



参考资料:

https://leetcode.com/problems/all-possible-full-binary-trees/



LeetCode All in One 题目讲解汇总(持续更新中...)

[LeetCode] 894. All Possible Full Binary Trees 所有可能的满二叉树

原文:https://www.cnblogs.com/grandyang/p/10952459.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!