python-3.x 非二叉树高度(优化)

qjp7pelc  于 2022-12-05  发布在  Python
关注(0)|答案(1)|浏览(153)

简介

我正在学习edX的课程,并且已经花了3个小时的时间来完成这个练习作业,但是我仍然找不到一种方法来实现这个方法,而不会花费太长的时间,并且会使自动分级机超时。
我尝试了3种不同的方法,都是做同样的事情,包括2种递归方法和1种非递归方法(我最新的)。
我认为我的代码存在的问题是,查找子节点的方法太长了,因为它必须遍历整个节点列表。

输入和输出格式

输入包括第一行上的N,其为第2行上给出的列表的大小。

  • 范例:*
  1. 5
  2. -1 0 4 0 3

若要从此生成树:数组中的每个值都是指向数组中另一个索引的指针,因此在上面的示例中,0是-1(索引0)的子节点。由于-1不指向其他索引,因此它是根节点。

范例中的树形结构具有根节点-1,它有两个子系0(索引1)和0(索引3)。索引1的0没有子系,索引3的0有1个子系:3(索引4),而该子节点又只有一个子节点4(索引2)。
上述输入产生的输出为4。这是因为包含-1(根节点)、0、3和4的分支的最大高度为4,而另一个分支(-1和0)的高度为2。
如果你需要更详细的解释,那么我可以在评论中再给予一个例子!
输出是树的最大高度。输入的大小达到了100,000这是我遇到的麻烦,因为它必须在正好3秒或低于的时间内完成。
我的代码
这是我最新的非递归方法,我认为这是我做的最快的方法(仍然不够快)。我使用了网站上的启动程序,我也会在我的代码下面包括它。无论如何,谢谢你的帮助!
我的代码:

  1. # python3
  2. import sys, threading
  3. sys.setrecursionlimit(10**7) # max depth of recursion
  4. threading.stack_size(2**27) # new thread will get stack of such size
  5. def height(node, parent_list):
  6. h = 0
  7. while not node == -1:
  8. h = h + 1
  9. node = parent_list[node]
  10. return h + 1
  11. def search_bottom_nodes(parent_list):
  12. bottom_nodes = []
  13. for index, value in enumerate(parent_list):
  14. children = [i for i, x in enumerate(parent_list) if x == index]
  15. if len(children) == 0:
  16. bottom_nodes.append(value)
  17. return bottom_nodes
  18. class TreeHeight:
  19. def read(self):
  20. self.n = int(sys.stdin.readline())
  21. self.parent = list(map(int, sys.stdin.readline().split()))
  22. def compute_height(self):
  23. # Replace this code with a faster implementation
  24. bottom_nodes = search_bottom_nodes(self.parent)
  25. h = 0
  26. for index, value in enumerate(bottom_nodes):
  27. h = max(height(value, self.parent), h)
  28. return h
  29. def main():
  30. tree = TreeHeight()
  31. tree.read()
  32. print(tree.compute_height())
  33. threading.Thread(target=main).start()

edX启动器:

  1. # python3
  2. import sys, threading
  3. sys.setrecursionlimit(10**7) # max depth of recursion
  4. threading.stack_size(2**27) # new thread will get stack of such size
  5. class TreeHeight:
  6. def read(self):
  7. self.n = int(sys.stdin.readline())
  8. self.parent = list(map(int, sys.stdin.readline().split()))
  9. def compute_height(self):
  10. # Replace this code with a faster implementation
  11. maxHeight = 0
  12. for vertex in range(self.n):
  13. height = 0
  14. i = vertex
  15. while i != -1:
  16. height += 1
  17. i = self.parent[i]
  18. maxHeight = max(maxHeight, height);
  19. return maxHeight;
  20. def main():
  21. tree = TreeHeight()
  22. tree.read()
  23. print(tree.compute_height())
  24. threading.Thread(target=main).start()
ejk8hzay

ejk8hzay1#

只需缓存先前计算的dict中遍历过的节点的高度,并在将它们作为父节点引用时重用它们。

  1. import sys, threading
  2. sys.setrecursionlimit(10**7) # max depth of recursion
  3. threading.stack_size(2**27) # new thread will get stack of such size
  4. class TreeHeight:
  5. def height(self, node):
  6. if node == -1:
  7. return 0
  8. if self.parent[node] in self.heights:
  9. self.heights[node] = self.heights[self.parent[node]] + 1
  10. else:
  11. self.heights[node] = self.height(self.parent[node]) + 1
  12. return self.heights[node]
  13. def read(self):
  14. self.n = int(sys.stdin.readline())
  15. self.parent = list(map(int, sys.stdin.readline().split()))
  16. self.heights = {}
  17. def compute_height(self):
  18. maxHeight = 0
  19. for vertex in range(self.n):
  20. maxHeight = max(maxHeight, self.height(vertex))
  21. return maxHeight;
  22. def main():
  23. tree = TreeHeight()
  24. tree.read()
  25. print(tree.compute_height())
  26. threading.Thread(target=main).start()

假设您的问题输入相同,此代码(以及您的原始代码)将输出:

  1. 4
展开查看全部

相关问题