当前位置:Gxlcms > Python > Python二叉搜索树与双向链表转换实现方法

Python二叉搜索树与双向链表转换实现方法

时间:2021-07-01 10:21:17 帮助过:98人阅读

本文实例讲述了Python二叉搜索树与双向链表实现方法。分享给大家供大家参考,具体如下:

  1. # encoding=utf8
  2. '''
  3. 题目:输入一棵二叉搜索树,将该二叉搜索树转换成一个排序的双向链表。
  4. 要求不能创建任何新的结点,只能调整树中结点指针的指向。
  5. '''
  6. class BinaryTreeNode():
  7. def __init__(self, value, left = None, right = None):
  8. self.value = value
  9. self.left = left
  10. self.right = right
  11. def create_a_tree():
  12. node_4 = BinaryTreeNode(4)
  13. node_8 = BinaryTreeNode(8)
  14. node_6 = BinaryTreeNode(6, node_4, node_8)
  15. node_12 = BinaryTreeNode(12)
  16. node_16 = BinaryTreeNode(16)
  17. node_14 = BinaryTreeNode(14, node_12, node_16)
  18. node_10 = BinaryTreeNode(10, node_6, node_14)
  19. return node_10
  20. def print_a_tree(root):
  21. if root is None:return
  22. print_a_tree(root.left)
  23. print root.value, ' ',
  24. print_a_tree(root.right)
  25. def print_a_linked_list(head):
  26. print 'linked_list:'
  27. while head is not None:
  28. print head.value, ' ',
  29. head = head.right
  30. print ''
  31. def create_linked_list(root):
  32. '''构造树的双向链表,返回这个双向链表的最左结点和最右结点的指针'''
  33. if root is None:
  34. return (None, None)
  35. # 递归构造出左子树的双向链表
  36. (l_1, r_1) = create_linked_list(root.left)
  37. left_most = l_1 if l_1 is not None else root
  38. (l_2, r_2) = create_linked_list(root.right)
  39. right_most = r_2 if r_2 is not None else root
  40. # 将整理好的左右子树和root连接起来
  41. root.left = r_1
  42. if r_1 is not None:r_1.right = root
  43. root.right = l_2
  44. if l_2 is not None:l_2.left = root
  45. # 由于是双向链表,返回给上层最左边的结点和最右边的结点指针
  46. return (left_most, right_most)
  47. if __name__ == '__main__':
  48. tree_1 = create_a_tree()
  49. print_a_tree(tree_1)
  50. (left_most, right_most) = create_linked_list(tree_1)
  51. print_a_linked_list(left_most)
  52. pass

更多关于Python相关内容可查看本站专题:《Python正则表达式用法总结》、《Python数据结构与算法教程》、《Python Socket编程技巧总结》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》

希望本文所述对大家Python程序设计有所帮助。

人气教程排行