Leetcode刷题Python从列表list中创建一颗二叉树

Posted Better Bench

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode刷题Python从列表list中创建一颗二叉树相关的知识,希望对你有一定的参考价值。

1 思路

使用递归创建二叉树,每个节点最多有两个子节点,以索引去从列表中取子节点的值,i为根节点,左子节点的值为2×i+1,右子节点的值为2×i+2。

2 python实现

class TreeNode:
    def __init__(self, x):
        self.val = x
        self.left = None
        self.right = None
def createTree(root,rt,i):
    if i <len(rt):
        if not rt[i]:
            return None
        else:
            root = TreeNode(rt[i])
            root.left =  createTree(root.left,rt,2*i+1)
            root.right = createTree(root.right,rt,2*i+2)
            return root
    return root 
    
root_list = [3,9,20,None,None,15,7]
root = TreeNode(-1)
root = createTree(root,root_list,0)

以上是关于Leetcode刷题Python从列表list中创建一颗二叉树的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode刷题--知识点查漏补缺

LeetCode-Easy刷题 Merge Two Sorted Lists

LeetCode刷题记录(python3)

Leetcode刷题Python295. 数据流的中位数

Leetcode刷题Python295. 数据流的中位数

Leetcode刷题Python739. 每日温度