本文介绍了如何在asp.net中从数据库中显示二进制族谱树?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想要显示成员的二元族谱树。

我有像

I want to display binary genealogy tree of members.
I have table like

MemberId  Name  ParentId  Position
1           a     null      null
2           b      1        left
3           c      1        right
4           d      2        right
5           e      2        left
6           f      3        left
7           g      3        right
8           h      4        left
9           i      4        right
10          j      5        right
11          k      6        left



喜欢这个我希望显示具有相应位置提升和右侧的二叉树。





请给我解决方案。


Like this and I want to display the binary tree with respective position lift and right.


Please give me solution.

推荐答案


这篇关于如何在asp.net中从数据库中显示二进制族谱树?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 03:39