会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
stone 的个人空间
博客园
首页
新随笔
新文章
联系
订阅
管理
2008年7月2日
Get depth of BTree
摘要: public int GetDepth(BTreeNode node){ if(node == null) return 0; else { int d1=GetDepth(node.LNode); int d2=GetDepth(node.RNode); } return d1>d2?d1++:d2++; }
阅读全文
posted @ 2008-07-02 09:47 stone
阅读(219)
评论(0)
推荐(0)
编辑