二叉樹(shù)操作

# coding:utf-8

import pygraphviz as pgv

# 類(lèi)節(jié)點(diǎn)


class Node():
    def __init__(self, x=-1,index = 0, r_child=None, l_child=None):
        self.__x = x
        self.index = index
        self.l_child = l_child
        self.r_child = r_child

    def get(self):
        return self.__x

    def setx(self, x):
        self.__x = x
# 樹(shù)類(lèi)


class Tree():
    # 初始化一棵樹(shù)
    def __init__(self, node=None):
        self.root = node
        self.A = pgv.AGraph(directed=True, strict=True, rankdir='TR')
        self.A.node_attr['shape'] = 'circle'

    def add_node(self, node):
        my_queue = []
        if self.root is None:
            self.root = node
            return
        temp_node = self.root
        while temp_node:
            if temp_node.l_child is None:
                temp_node.l_child = node
                return
            if temp_node.r_child is None:
                temp_node.r_child = node
                return
            my_queue.append(temp_node.l_child)
            my_queue.append(temp_node.r_child)
            temp_node = my_queue.pop(0)

    def get_deep(self, total):
            fac = 1
            total = total+1
            times = 0
            while fac <= total:
                fac = 2*fac
                times = times + 1
            return times

    def create_by_preorder(self, capacity):
            '''將capacity數(shù)組按照先序創(chuàng)建二叉樹(shù)'''
            length = len(capacity)
            if length <= 0:
                return None
            '''計(jì)算可以創(chuàng)建樹(shù)的深度-層數(shù)'''
            deep_nums = self.get_deep(length)
            self.root = Node(capacity[0])
            if length == 1:
                return
            '''先在來(lái)根據(jù)二叉樹(shù)來(lái)估算左右元素個(gè)數(shù)'''
            '''計(jì)算最下層個(gè)數(shù)bottom_numers'''
            temp = pow(2, (deep_nums-1))
            bottom_numers = length - (temp-1)
            left_numbers = 0
            '''計(jì)算左右各占幾個(gè)數(shù)'''
            if bottom_numers >= temp/2:
                left_numbers = temp-1
            else:
                left_numbers = temp-1 - (temp/2-bottom_numers)
            left_capacity = capacity[1:(left_numbers+1)]
            left_tree = Tree()
            right_tree = Tree()
            left_tree.create_by_preorder(left_capacity)
            self.root.l_child = left_tree.root
            right_capacity = capacity[(left_numbers+1):]
            right_tree.create_by_preorder(right_capacity)
            self.root.r_child = right_tree.root

    def recur_preorder_trvalsal(self, root):
        '''遞歸實(shí)現(xiàn)先序遍歷'''
        if root is None:
            return
        print root.get()
        l, r = None, None
        if root.l_child:
            self.A.add_edge(root.get(), root.l_child.get())
            l = root.l_child.get()
            self.recur_preorder_trvalsal(root.l_child)
        if root.r_child:
            self.A.add_edge(root.get(), root.r_child.get())
            r = root.r_child.get()
            self.recur_preorder_trvalsal(root.r_child)
        if root.l_child or root.r_child:
            if not root.l_child:
                l = str(root.get()) + '-'
                self.A.add_node(l, style='invis')
                self.A.add_edge(root.get(), l, style='invis')
            if not root.r_child:
                r = str(root.get()) + '+'
                self.A.add_node(r, style='invis')
                self.A.add_edge(root.get(), r, style='invis')
            mid = str(root.get()) + ' '
            self.A.add_node(mid, style='invis')
            self.A.add_edge(root.get(), mid, style='invis')
            B = self.A.add_subgraph([l, mid, r], rank='same')
            B.add_edge(l, mid, style='invis')
            B.add_edge(mid, r, style='invis')

    def graph_tree(self):
        self.A.layout('dot')
        self.A.draw('tree.ps')

    def stack_preorder_trvalsal(self, root):

        '''堆棧實(shí)現(xiàn)先序遍歷'''
        stack = []
        temp_node = root
        num = 0
        while temp_node or stack:
            if temp_node:
                num += 1
                print temp_node.get()
                stack.append(temp_node)
                temp_node = temp_node.l_child
            else:
                temp_node = stack.pop()
                temp_node = temp_node.r_child
        return num

    def recur_midorder_trvalsal(self, root):
        '''遞歸實(shí)現(xiàn)中序遍歷'''
        if root is None:
            return
        self.recur_midorder_trvalsal(root.l_child)
        print root.get()
        self.recur_midorder_trvalsal(root.r_child)

    def stack_midorder_trvalsal(self, root):
        '''堆棧實(shí)現(xiàn)中序遍歷'''
        temp_node = root
        my_stack = []
        while temp_node or my_stack:
            if temp_node:
                my_stack.append(temp_node)
                temp_node = temp_node.l_child
            else:
                temp_node = my_stack.pop()
                print temp_node.get()
                temp_node = temp_node.r_child

    def recur_postorder_trvalsal(self, root):
        '''遞歸實(shí)現(xiàn)后序遍歷'''
        if root is None:
            return
        self.recur_postorder_trvalsal(root.l_child)
        self.recur_postorder_trvalsal(root.r_child)
        print root.get()

    def stack_postorder_trvalsal(self, root):
        '''堆棧實(shí)現(xiàn)后序遍歷'''
        my_stack1 = []
        my_stack2 = []
        temp_node = root
        while temp_node or my_stack1:
            if temp_node:
                my_stack2.append(temp_node)
                my_stack1.append(temp_node)
                temp_node = temp_node.r_child
            else:
                temp_node = my_stack1.pop()
                temp_node = temp_node.l_child
        while my_stack2:
            print my_stack2.pop().get()

    def queue_trvalsal(self, root):
        temp_node = root
        my_stack = []
        while temp_node or my_stack:
            if temp_node:
                print temp_node.get()
                if temp_node.l_child:
                    my_stack.append(temp_node.l_child)
                if temp_node.r_child:
                    my_stack.append(temp_node.r_child)
            if my_stack == []:
                return
            temp_node = my_stack.pop(0)

    def create_preorder(self, deep_nums):
        if self.root is None:
            self.root = Node(0)
        left_tree = Tree()
        left_tree.root = Node(1)
        left_tree.root.index = self.root.index + 1
        if left_tree.root.index > deep_nums:
            return
        left_tree.create_preorder(deep_nums)
        self.root.l_child = left_tree.root
        right_tree = Tree()
        right_tree.root = Node(0)
        right_tree.root.index = self.root.index + 1
        right_tree.create_preorder(deep_nums)
        self.root.r_child = right_tree.root

    def create_preorder1(self, root, deep_nums):
        root.l_child = Node(1)
        root.l_child.index = root.index+1
        if root.l_child.index < deep_nums:
            self.create_preorder1(root.l_child, deep_nums)
        root.r_child = Node(0)
        root.r_child.index = root.index+1
        if root.r_child.index < deep_nums:
            self.create_preorder1(root.r_child, deep_nums)

def test():
    print 'test'

if __name__ == '__main__':
    test()
    print "sdfsdfsdfsd"
    while 1:
        print '1'

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末什猖,一起剝皮案震驚了整個(gè)濱河市照藻,隨后出現(xiàn)的幾起案子另患,更是在濱河造成了極大的恐慌凭语,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,383評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件薄啥,死亡現(xiàn)場(chǎng)離奇詭異辕羽,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)垄惧,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,522評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門(mén)刁愿,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人到逊,你說(shuō)我怎么就攤上這事铣口。” “怎么了觉壶?”我有些...
    開(kāi)封第一講書(shū)人閱讀 157,852評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵枷踏,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我掰曾,道長(zhǎng),這世上最難降的妖魔是什么停团? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,621評(píng)論 1 284
  • 正文 為了忘掉前任旷坦,我火速辦了婚禮掏熬,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘秒梅。我一直安慰自己旗芬,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,741評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布捆蜀。 她就那樣靜靜地躺著疮丛,像睡著了一般。 火紅的嫁衣襯著肌膚如雪辆它。 梳的紋絲不亂的頭發(fā)上誊薄,一...
    開(kāi)封第一講書(shū)人閱讀 49,929評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音锰茉,去河邊找鬼呢蔫。 笑死,一個(gè)胖子當(dāng)著我的面吹牛飒筑,可吹牛的內(nèi)容都是我干的片吊。 我是一名探鬼主播,決...
    沈念sama閱讀 39,076評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼协屡,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼俏脊!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起肤晓,我...
    開(kāi)封第一講書(shū)人閱讀 37,803評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤爷贫,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后材原,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體沸久,經(jīng)...
    沈念sama閱讀 44,265評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,582評(píng)論 2 327
  • 正文 我和宋清朗相戀三年余蟹,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了卷胯。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,716評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡威酒,死狀恐怖窑睁,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情葵孤,我是刑警寧澤担钮,帶...
    沈念sama閱讀 34,395評(píng)論 4 333
  • 正文 年R本政府宣布,位于F島的核電站尤仍,受9級(jí)特大地震影響箫津,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,039評(píng)論 3 316
  • 文/蒙蒙 一苏遥、第九天 我趴在偏房一處隱蔽的房頂上張望饼拍。 院中可真熱鬧,春花似錦田炭、人聲如沸师抄。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,798評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)叨吮。三九已至,卻和暖如春瞬矩,著一層夾襖步出監(jiān)牢的瞬間茶鉴,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,027評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工丧鸯, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留蛤铜,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,488評(píng)論 2 361
  • 正文 我出身青樓丛肢,卻偏偏與公主長(zhǎng)得像围肥,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子蜂怎,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,612評(píng)論 2 350