摘要: 二叉树类定义public class BinaryNode<T>{ public T Element; public BinaryNode<T> Left; public BinaryNode<T> Right; public BinaryNode(T element, BinaryNode<T> left, BinaryNode<T> right) { this.Element = element; this.Left = left; this.Right = right; } public bool IsLeaf() { if ( 阅读全文
posted @ 2010-11-14 21:03 stone 阅读(396) 评论(0) 推荐(0) 编辑