Python二叉搜索樹與雙向鏈表轉換實現(xiàn)方法
更新時間:2016年04月29日 11:50:32 作者:阿涵-_-
這篇文章主要介紹了Python二叉搜索樹與雙向鏈表轉換實現(xiàn)方法,涉及Python二叉搜索樹的定義、實現(xiàn)以及雙向鏈表的轉換技巧,需要的朋友可以參考下
本文實例講述了Python二叉搜索樹與雙向鏈表實現(xiàn)方法。分享給大家供大家參考,具體如下:
# encoding=utf8
'''
題目:輸入一棵二叉搜索樹,將該二叉搜索樹轉換成一個排序的雙向鏈表。
要求不能創(chuàng)建任何新的結點,只能調整樹中結點指針的指向。
'''
class BinaryTreeNode():
def __init__(self, value, left = None, right = None):
self.value = value
self.left = left
self.right = right
def 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_10
def 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
更多關于Python相關內容可查看本站專題:《Python正則表達式用法總結》、《Python數(shù)據結構與算法教程》、《Python Socket編程技巧總結》、《Python函數(shù)使用技巧總結》、《Python字符串操作技巧匯總》、《Python入門與進階經典教程》及《Python文件與目錄操作技巧匯總》
希望本文所述對大家Python程序設計有所幫助。
相關文章
詳解在python中如何使用zlib模塊進行數(shù)據壓縮和解壓縮
Python有一些內置庫用于處理數(shù)據壓縮和解壓縮,其中一個就是zlib模塊,這個模塊為DEFLATE壓縮算法和相關的gzip(文件格式)提供了支持,在這篇文章中,我們將深入探討如何使用zlib模塊進行數(shù)據壓縮和解壓縮2023-06-06
Flask與數(shù)據庫的交互插件Flask-Sqlalchemy的使用
在構建Web應用時,與數(shù)據庫的交互是必不可少的部分,本文主要介紹了Flask與數(shù)據庫的交互插件Flask-Sqlalchemy的使用,具有一定的參考價值,感興趣的可以了解一下2024-03-03
Python Tricks 使用 pywinrm 遠程控制 Windows 主機的方法
這篇文章主要介紹了Python Tricks 使用 pywinrm 遠程控制 Windows 主機的方法,本文給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2020-07-07
Python的爬蟲包Beautiful Soup中用正則表達式來搜索
這篇文章主要介紹了Python的爬蟲包Beautiful Soup中用正則表達式來搜索的技巧,包括使用正則表達式去搜索多種可能的關鍵字以及查找屬性值未知的標簽等,需要的朋友可以參考下2016-01-01

