分类: 电脑/网络 >> 程序设计 >> 其他编程语言
问题描述:
这个网站wjct里比如搜索姓陈的会有两个排列方式一个叠式一个塔式叠的容易实现塔的结构用ASP是怎么实现的我不太会用递归请告诉解决给个思路也行
这个是具 置wjct/pedigreeid=41&idn=陈铺头世系宗谱(二门)
解析:
sub tree(parentid,istop)
if istop then
sql="select from tree where id=" & parentid & " and parentid=0"
else
sql="select from tree where parentid=" & parentid
end if
set rs=servercreateobject("adodbrecordset")
rsopen sql,conn,1,1
if not rseof then
redim arr_temp(rsrecordcount)
i=0
responsewrite "<table border=0 cellspacing=2 cellpadding=0><tr>"
while not rseof
arr_temp(i)=rs("id")
responsewrite "<td align='center' bgcolor='#CCCCCC'>" & rs("title") & "</td>"
i=i+1
rsmovenext
wend
responsewrite "</tr><tr>"
for j=0 to i-1
responsewrite "<td>"
Call tree(arr_temp(j),false)
responsewrite "</td>"
next
responsewrite "</tr></table>"
end if
end sub
call tree(1,true)
测试通过!~
要数据库+源码的,请下载:
irich/images/treerar
请在5号前下载,,要不5号后我不担保还能不能下
画法如下:
*** 作设备:戴尔笔记本电脑
*** 作系统:win10
*** 作程序:Word文档20
1、首先打开word文档,点击工具栏中的“插入”选项并找到“smartart”图标。
2、然后在打开的“smartart”页面选择“组织结构图”,点击确定。
3、即可将标准的组织结构图插入页面中,点击文本处即可输入文字。
4、点击空白处或者原本的文本框,并选择添加项目的按钮,选择需要添加的项目的位置。
5、根据需要进行添加后即可生成一个家谱世系图的样式,在其中输入对应的姓名及内容即可。
以上就是关于家谱程序的塔结构全部的内容,包括:家谱程序的塔结构、家谱图怎么画、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)