您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“python如何創(chuàng)建平衡二叉樹”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
1、生成平衡樹的核心是partial_tree方法。
它以一個(gè)序列和數(shù)字為參數(shù),通過遞歸的方式返回一個(gè)序列。其中第一個(gè)是結(jié)構(gòu)樹,第二個(gè)是不包含在書中的元素。
2、實(shí)現(xiàn)的整體思路是,每次傳入的序列分為左半部分、頂點(diǎn)和右半部分,直到不能繼續(xù)拆分,然后逐層返回,最后組合成一棵平衡的二叉樹。
實(shí)例
""" list_to_tree方法將有序列表轉(zhuǎn)化為平衡二叉樹 一棵二叉樹分為樹頂點(diǎn)、左子樹、右子樹,其中左子樹的值都比樹頂節(jié)點(diǎn)小,右子樹的值都比樹頂點(diǎn)大 """ def make_tree(entry, left, right): # 創(chuàng)建樹的方法 return (entry, left, right) def entry(tree): # 獲取樹的頂點(diǎn) return tree[0] def left_branch(tree): # 獲取左子樹 return tree[1] def right_branch(tree): # 獲取右子樹 return tree[2] def list_to_tree(elements): return partial_tree(elements, len(elements))[0] def partial_tree(elts, n): if n == 0: return ((), elts) else: left_size = (n - 1) 2 left_result = partial_tree(elts, left_size) left_tree = left_result[0] non_left_elts = left_result[1] right_size = n - (left_size + 1) this_entry = non_left_elts[0] right_result = partial_tree(non_left_elts[1:], right_size) right_tree = right_result[0] remaing_elts = right_result[1] # print("entry", this_entry) # print("left_tree", left_tree) # print("right_tree", right_tree) return (make_tree(this_entry, left_tree, right_tree), remaing_elts) if __name__ == "__main__": tree = list_to_tree((1, 3, 5, 7, 9)) print("生成的平衡二叉樹為:", tree) print("樹的頂點(diǎn):", entry(tree)) print("樹的左子樹:", left_branch(tree)) print("樹的右子樹:", right_branch(tree))
“python如何創(chuàng)建平衡二叉樹”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。