文件名称:BSTree
- 所属分类:
- 数据结构常用算法
- 资源属性:
- [Windows] [Visual C] [源码]
- 上传时间:
- 2012-11-26
- 文件大小:
- 266kb
- 下载次数:
- 0次
- 提 供 者:
- 卧*
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
实现对依次输入的关键字序列建立二叉排序树,并能实现二叉排序树的查找、插入和删除运算。
链式存储结构:
typedef struct BiTNode{
KeyType key
BiTNode* lchild
BiTNode* rchild
}*BiTree
关键字类型KeyType为int。
-Binary sort tree, and the turn sequence of the keywords entered binary sort tree lookup, insertion and deletion operation. Storage Structure: typedef struct BiTNode {KeyType the key BiTNode* lchild for BiTNode* rchild }* BiTree Keyword Type KeyType to int.
链式存储结构:
typedef struct BiTNode{
KeyType key
BiTNode* lchild
BiTNode* rchild
}*BiTree
关键字类型KeyType为int。
-Binary sort tree, and the turn sequence of the keywords entered binary sort tree lookup, insertion and deletion operation. Storage Structure: typedef struct BiTNode {KeyType the key BiTNode* lchild for BiTNode* rchild }* BiTree Keyword Type KeyType to int.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
二叉排序树的基本操作\BSTree.cpp
....................\Debug\BSTree.obj
....................\.....\vc60.idb
....................\.....\vc60.pdb
....................\.....\二叉排序树的基本操作.exe
....................\.....\二叉排序树的基本操作.ilk
....................\.....\二叉排序树的基本操作.pch
....................\.....\二叉排序树的基本操作.pdb
....................\二叉排序树的基本操作.dsp
....................\二叉排序树的基本操作.dsw
....................\二叉排序树的基本操作.ncb
....................\二叉排序树的基本操作.opt
....................\二叉排序树的基本操作.plg
....................\Debug
二叉排序树的基本操作
....................\Debug\BSTree.obj
....................\.....\vc60.idb
....................\.....\vc60.pdb
....................\.....\二叉排序树的基本操作.exe
....................\.....\二叉排序树的基本操作.ilk
....................\.....\二叉排序树的基本操作.pch
....................\.....\二叉排序树的基本操作.pdb
....................\二叉排序树的基本操作.dsp
....................\二叉排序树的基本操作.dsw
....................\二叉排序树的基本操作.ncb
....................\二叉排序树的基本操作.opt
....................\二叉排序树的基本操作.plg
....................\Debug
二叉排序树的基本操作