Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/349.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 包括已删除节点的BST宽度优先遍历_Python_Binary Search Tree_Breadth First Search - Fatal编程技术网

Python 包括已删除节点的BST宽度优先遍历

Python 包括已删除节点的BST宽度优先遍历,python,binary-search-tree,breadth-first-search,Python,Binary Search Tree,Breadth First Search,鉴于这棵树: 7 5 9 _ 6 8 _ _ _ _ _ 我希望输出为: [[Node(7)], [Node(5), Node(9)], [None, Node(6), Node(8), None], [None, None, None, None]] 因此,重要的是要包含“无”,并且输出是列表中的列表 我尝试了很多东西,但我现在就是这样: class Node(object): def __init__(sel

鉴于这棵树:

         7
    5         9
  _  6      8  _ 
    _ _    _ _
我希望输出为:

[[Node(7)], [Node(5), Node(9)], [None, Node(6), Node(8), None], [None, None, None, None]]
因此,重要的是要包含“无”,并且输出是列表中的列表

我尝试了很多东西,但我现在就是这样:

class Node(object):
  def __init__(self, key, value=None):
    self.key = key
    self.value = value
    self.parent = None
    self.left_child = None
    self.right_child = None
    self.height = 0 

def breadth_first_traversal(self):
  self.height = 1
  to_do = [self.root]
  if (self.root == None):
    return to_do
  output = []
  current_height = self.height
  output.append([str(node) for node in to_do])

  while (to_do):
    done = []
    current = to_do.pop(0)
    if (current.height > current_height):
      current_height += 1
    if (current.left_child):
      current.left_child.height = current_height + 1 
      to_do.append(current.left_child)
      done.append(current.left_child)
    elif (not current.left_child):
      done.append(None)
    if (current.right_child):
      current.right_child.height = current_height + 1 
      to_do.append(current.right_child)
      done.append(current.right_child)
    elif (not current.right_child):
      done.append(None) 
    output.append([str(node) for node in done])

  print(output)
  return output
现在的输出是:

[['7'], ['5', '9'], ['None', '6'], ['8', 'None'], ['None', 'None'], ['None', 'None']]

我理解它为什么要列出两个元素,因为这就是我说它现在应该做的。我只是不知道如何考虑级别。

因为您使用的是二元搜索树,所以将结果作为元组连接到数组是有意义的

如果要根据数组的相对深度连接数组,则需要实现聚合器函数,该函数将继续将元素附加到列表中,直到深度增加,此时将保存列表并清除下一个集合

或者,您可以将结果传递给一个助手函数,该函数只需按照您想要的方式连接元素

编辑1:以下操作应该有效;但是,我没有测试它。我只是将
done
移动到
while
循环之外,这样每次迭代后它就不会重新初始化。此外,当深度增加时,我只将
done
附加到
output
,因为此时没有其他元素要处理

class Node(object):
  def __init__(self, key, value=None):
    self.key = key
    self.value = value
    self.parent = None
    self.left_child = None
    self.right_child = None
    self.height = 0 

def breadth_first_traversal(self):
  self.height = 1
  to_do = [self.root]
  if (self.root == None):
    return to_do
  output = []
  current_height = self.height
  output.append([str(node) for node in to_do])
  done = []

  while (to_do):
    current = to_do.pop(0)
    if (current.height > current_height):
      current_height += 1
      output.append([str(node) for node in done])
      done = []
    if (current.left_child):
      current.left_child.height = current_height + 1 
      to_do.append(current.left_child)
      done.append(current.left_child)
    elif (not current.left_child):
      done.append(None)
    if (current.right_child):
      current.right_child.height = current_height + 1 
      to_do.append(current.right_child)
      done.append(current.right_child)
    elif (not current.right_child):
      done.append(None) 

  print(output)
  return output

由于您使用的是二进制搜索树,因此将结果作为元组连接到数组是有意义的

如果要根据数组的相对深度连接数组,则需要实现聚合器函数,该函数将继续将元素附加到列表中,直到深度增加,此时将保存列表并清除下一个集合

或者,您可以将结果传递给一个助手函数,该函数只需按照您想要的方式连接元素

编辑1:以下操作应该有效;但是,我没有测试它。我只是将
done
移动到
while
循环之外,这样每次迭代后它就不会重新初始化。此外,当深度增加时,我只将
done
附加到
output
,因为此时没有其他元素要处理

class Node(object):
  def __init__(self, key, value=None):
    self.key = key
    self.value = value
    self.parent = None
    self.left_child = None
    self.right_child = None
    self.height = 0 

def breadth_first_traversal(self):
  self.height = 1
  to_do = [self.root]
  if (self.root == None):
    return to_do
  output = []
  current_height = self.height
  output.append([str(node) for node in to_do])
  done = []

  while (to_do):
    current = to_do.pop(0)
    if (current.height > current_height):
      current_height += 1
      output.append([str(node) for node in done])
      done = []
    if (current.left_child):
      current.left_child.height = current_height + 1 
      to_do.append(current.left_child)
      done.append(current.left_child)
    elif (not current.left_child):
      done.append(None)
    if (current.right_child):
      current.right_child.height = current_height + 1 
      to_do.append(current.right_child)
      done.append(current.right_child)
    elif (not current.right_child):
      done.append(None) 

  print(output)
  return output

一种可能是查找所有节点,包括存储
None
的叶子,以及每个节点的深度,然后按深度分组:

为简单起见,我创建了一个二叉树,可以使用
kwargs
轻松初始化,并提供遍历树和提供运行深度值的方法:

from itertools import groupby

class Node:
  def __init__(self, **kwargs):
     self.__dict__ = {i:kwargs.get(i, None) for i in ['left', 'right', 'value']}
  def get_depths(self, _count = 0):
    yield [_count, self.value]
    if self.left is not None:
      yield from self.left.get_depths(_count+1)
    else:
      yield [_count+1, None]
    if self.right is not None:
      yield from self.right.get_depths(_count+1)
    else:
      yield [_count+1, None]

tree = Node(value=7, left=Node(value=5, right=Node(value=6)), right=Node(value=9, left=Node(value=8)))
flattened = [[c for _, c in b] for _, b in groupby(sorted(list(tree.get_depths()), key=lambda x:x[0]), key=lambda x:x[0])]
输出:

[[7], [5, 9], [None, 6, 8, None], [None, None, None, None]]

一种可能是查找所有节点,包括存储
None
的叶子,以及每个节点的深度,然后按深度分组:

为简单起见,我创建了一个二叉树,可以使用
kwargs
轻松初始化,并提供遍历树和提供运行深度值的方法:

from itertools import groupby

class Node:
  def __init__(self, **kwargs):
     self.__dict__ = {i:kwargs.get(i, None) for i in ['left', 'right', 'value']}
  def get_depths(self, _count = 0):
    yield [_count, self.value]
    if self.left is not None:
      yield from self.left.get_depths(_count+1)
    else:
      yield [_count+1, None]
    if self.right is not None:
      yield from self.right.get_depths(_count+1)
    else:
      yield [_count+1, None]

tree = Node(value=7, left=Node(value=5, right=Node(value=6)), right=Node(value=9, left=Node(value=8)))
flattened = [[c for _, c in b] for _, b in groupby(sorted(list(tree.get_depths()), key=lambda x:x[0]), key=lambda x:x[0])]
输出:

[[7], [5, 9], [None, 6, 8, None], [None, None, None, None]]

我觉得我现在正在使用“完成”列表,但我不知道如何正确使用高度我觉得我正在使用“完成”列表,但我不知道如何正确使用高度