- 浏览: 1798 次
- 性别:
- 来自: 南京
最新评论
文章列表
二叉排序树:或者是一颗空树,或者具有下列性质的二叉树:左子树全小于它的根节点,右子树节点的值全部大于根节点的值,它的左右子树也分别为二叉排序树。
java实现:
package cn.stone.algorithm;
public class BinarySortTree{
class BiTree{
int data;
BiTree lchild;
BiTree rchild;
public BiTree(int data,BiTree lchild,BiTree rchild){
this.data=data;
this.lch ...