摘要: 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) 编辑