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

发布于 2022-10-15 10:11:11 字数 3266 浏览 18 评论 0

转:王福朋

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

在数据库中建立一个表,有Id, fatherId, value 三个字段,就可以存储一个树。

如何把该表中的数据以树的形式呈现出来,下面小弟用python简单模拟一下。

初学python,请大家多多指点。另外非常感谢http://www.cnblogs.com/lzyzizi/对小弟的指点。

运行结果:

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

复制代码源代码:

  1. 1 #!user/bin/python
  2. 2   
  3. 3  class noteModel:
  4. 4     def __init__(self,Id,value,fatherId):
  5. 5         self.Id=Id
  6. 6         self.value=value
  7. 7         self.fatherId=fatherId
  8. 8         self.children = []
  9. 9
  10. 10     def addChild(self,*child):
  11. 11         self.children += child
  12. 12
  13. 13     def printTree(self,layer):
  14. 14         print '  '*layer + self.value
  15. 15         map(lambda child:child.printTree(layer + 1), self.children)
  16. 16
  17. 17  def main():
  18. 18
  19. 19     #数据表模拟,数据库有 Id, value, fatherId 三个字段,t1-t10代表10条数据行
  20. 20      t1 = noteModel(1,'A-1',0)
  21. 21     t2 = noteModel(2,'B-1',1)
  22. 22     t3 = noteModel(3,'B-2',1)
  23. 23     t4 = noteModel(4,'C-1',2)
  24. 24     t5 = noteModel(5,'C-2',2)
  25. 25     t6 = noteModel(6,'C-3',3)
  26. 26     t7 = noteModel(7,'C-4',3)
  27. 27     t8 = noteModel(8,'D-1',4)
  28. 28     t9 = noteModel(9,'E-1',8)
  29. 29     t10 = noteModel(10,'E-2',8)
  30. 30     
  31. 31     #查询数据库,并生成列表
  32. 32     list = [t1,t2,t3,t4,t5,t6,t7,t8,t9,t10]
  33. 33     
  34. 34     #循环列表,绑定父子关系,形成一个树
  35. 35     for i in range(0, len(list)):
  36. 36         for j in range(0, len(list)):
  37. 37             if list[j].fatherId == list[i].Id:
  38. 38                 list[i].addChild(list[j])
  39. 39     
  40. 40     #打印树
  41. 41     t1.printTree(0)
  42. 42
  43. 43 if __name__ == "__main__":
  44. 44     main()

复制代码

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文