用列表创建二叉树,用python代码实现
使用Python代码创建二叉树的一种常用方法是使用列表:class Node:def init(self, val):self.val = valself.left = Noneself.right = None# Function to create a binary tree from the given arraydef c...
·
使用Python代码创建二叉树的一种常用方法是使用列表:class Node: def init(self, val): self.val = val self.left = None self.right = None# Function to create a binary tree from the given array def createBinaryTree(arr, root, i, n):
if i < n:
temp = Node(arr[i])
root
更多推荐
已为社区贡献8条内容
所有评论(0)