创建平衡二叉树

时间:2015-02-10 03:01:21
【文件属性】:

文件名称:创建平衡二叉树

文件大小:31KB

文件格式:DOC

更新时间:2015-02-10 03:01:21

平衡2叉树 数据结构

平衡二叉树创建 typedef int Status; typedef int ElemType; typedef struct BSTNode{ ElemType data; int bf; struct BSTNode *lchild,*rchild; }BSTNode,*BSTree; //平衡二叉树基一操作函数 #include #include #include //构造平衡二叉树T Status InitAVL(BSTree &T) { T=NULL; return OK; } (其余请下载观看)


网友评论

  • 这个不错,谢谢楼主了啊
  • 没什么特别之处,2分不值得