python簡單類比:把樹儲存在資料表中

來源:互聯網
上載者:User

標籤:

在資料庫中建立一個表,有Id, fatherId, value 三個欄位,就可以儲存一個樹。

如何把該表中的資料以樹的形式呈現出來,下面小弟用python簡單類比一下。

初學python,請大家多多指點。另外非常感謝http://www.cnblogs.com/lzyzizi/對小弟的指點。

運行結果:

A-1  B-1    C-1      D-1        E-1        E-2    C-2  B-2    C-3    C-4

 

原始碼:

#!user/bin/python  class noteModel:    def __init__(self,Id,value,fatherId):        self.Id=Id        self.value=value        self.fatherId=fatherId        self.children = []    def addChild(self,*child):        self.children += child    def printTree(self,layer):        print ‘  ‘*layer + self.value        map(lambda child:child.printTree(layer + 1), self.children) def main():    #資料表類比,資料庫有 Id, value, fatherId 三個欄位,t1-t10代表10條資料行     t1 = noteModel(1,‘A-1‘,0)    t2 = noteModel(2,‘B-1‘,1)    t3 = noteModel(3,‘B-2‘,1)    t4 = noteModel(4,‘C-1‘,2)    t5 = noteModel(5,‘C-2‘,2)    t6 = noteModel(6,‘C-3‘,3)    t7 = noteModel(7,‘C-4‘,3)    t8 = noteModel(8,‘D-1‘,4)    t9 = noteModel(9,‘E-1‘,8)    t10 = noteModel(10,‘E-2‘,8)        #查詢資料庫,並產生列表    list = [t1,t2,t3,t4,t5,t6,t7,t8,t9,t10]        #迴圈列表,綁定父子關係,形成一個樹    for i in range(0, len(list)):        for j in range(0, len(list)):            if list[j].fatherId == list[i].Id:                list[i].addChild(list[j])        #列印樹    t1.printTree(0)if __name__ == "__main__":    main()

 

 

python簡單類比:把樹儲存在資料表中

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.