国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

Python二叉搜索樹與雙向鏈表轉換實現方法

2020-01-04 17:30:22
字體:
來源:轉載
供稿:網友
這篇文章主要介紹了Python二叉搜索樹與雙向鏈表轉換實現方法,涉及Python二叉搜索樹的定義、實現以及雙向鏈表的轉換技巧,需要的朋友可以參考下
 

本文實例講述了Python二叉搜索樹與雙向鏈表實現方法。分享給大家供大家參考,具體如下:

# encoding=utf8'''題目:輸入一棵二叉搜索樹,將該二叉搜索樹轉換成一個排序的雙向鏈表。要求不能創建任何新的結點,只能調整樹中結點指針的指向。'''class BinaryTreeNode():  def __init__(self, value, left = None, right = None):    self.value = value    self.left = left    self.right = rightdef create_a_tree():  node_4 = BinaryTreeNode(4)  node_8 = BinaryTreeNode(8)  node_6 = BinaryTreeNode(6, node_4, node_8)  node_12 = BinaryTreeNode(12)  node_16 = BinaryTreeNode(16)  node_14 = BinaryTreeNode(14, node_12, node_16)  node_10 = BinaryTreeNode(10, node_6, node_14)  return node_10def print_a_tree(root):  if root is None:return  print_a_tree(root.left)  print root.value, ' ',  print_a_tree(root.right)def print_a_linked_list(head):  print 'linked_list:'  while head is not None:    print head.value, ' ',    head = head.right  print ''def create_linked_list(root):  '''構造樹的雙向鏈表,返回這個雙向鏈表的最左結點和最右結點的指針'''  if root is None:    return (None, None)  # 遞歸構造出左子樹的雙向鏈表  (l_1, r_1) = create_linked_list(root.left)  left_most = l_1 if l_1 is not None else root  (l_2, r_2) = create_linked_list(root.right)  right_most = r_2 if r_2 is not None else root  # 將整理好的左右子樹和root連接起來  root.left = r_1  if r_1 is not None:r_1.right = root  root.right = l_2  if l_2 is not None:l_2.left = root  # 由于是雙向鏈表,返回給上層最左邊的結點和最右邊的結點指針  return (left_most, right_most)if __name__ == '__main__':  tree_1 = create_a_tree()  print_a_tree(tree_1)  (left_most, right_most) = create_linked_list(tree_1)  print_a_linked_list(left_most)  pass

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 西乌| 南澳县| 南丹县| 遂溪县| 泰安市| 霸州市| 隆安县| 宜川县| 九江县| 巫溪县| 甘泉县| 夹江县| 兴城市| 赣榆县| 东辽县| 专栏| 荆门市| 丰顺县| 广宗县| 盐源县| 启东市| 南江县| 绥化市| 长武县| 涟水县| 朝阳县| 馆陶县| 五常市| 武城县| 彰武县| 黄山市| 虎林市| 兖州市| 禹州市| 长乐市| 绥德县| 康保县| 军事| 黄骅市| 贵溪市| 扎鲁特旗|