码迷,mamicode.com
首页 > 编程语言 > 详细

python简单模拟:把树存储在数据表中

时间:2015-05-24 12:56:52      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

在数据库中建立一个表,有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简单模拟:把树存储在数据表中

标签:

原文地址:http://www.cnblogs.com/LittleRedPoint/p/4525656.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!