网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 论文素材 设计下载 最新论文 下载排行 论文上传 在线投稿 联系我们
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > VC++ > 正文
数据结构C语言实现系列——二叉树
来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/15
下载{$ArticleTitle}原创论文样式
bsp;

#include 
#define QUEUE_MAX_SIZE 20
#define STACK_MAX_SIZE 10
typedef int elemType;
#include "BT.c"
/************************************************************************/
/*                    以下是关于二叉搜索树操作的4个简单算法               */
/************************************************************************/

/* 1.查找 */
/* 递归算法 */
elemType *findBSTree1(struct BTreeNode *bst, elemType x)
{
/* 树为空则返回NULL */
if (bst == NULL){
return NULL;
}else{
if (x == bst->data){
return &(bst->data);
}else{
if (x < bst->data){    /* 向左子树查找并直接返回 */
return findBSTree1(bst->left, x);
}else{        /* 向右子树查找并直接返回 */
return findBSTree1(bst->right, x);
}
}
}
}
/* 非递归算法 */
elemType *findBSTree2(struct BTreeNode *bst, elemType x)
{
while (bst != NULL){
if (x == bst->data){
return &(bst->data);
}else if (x < bst->data){
bst = bst->left;
}else{
bst = bst->right;
}
}
return NULL;
}

/* 2.插入 */
/* 递归算法 */
void insertBSTree1(struct BTreeNode* *bst, elemType x)
{
/* 新建一个根结点 */
if (*bst == NULL){
struct BTreeNode *p = (struct BTreeNode *)malloc(sizeof(struct BTreeNode));
p->data = x;
p->left = p->right = NULL;
*bst = p;
return;
}else if (x < (*bst)->data){        /* 向左子树完成插入运算 */
insertBSTree1(&((*bst)->left), x);
}else{        /* 向右子树完成插入运算 */
insertBSTree1(&((*bst)->right), x);
}
}

/* 非递归算法 */
void insertBSTree2(struct BTreeNode* *bst, elemType x)
{
struct BTreeNode *p;
struct BTreeNode *t = *bst, *parent = NULL;
/* 为待插入的元素查找插入位置 */
while (t != NULL){
parent = t;
if (x < t->data){
t = t->left;
}else{
t = t->right;
}
}
/* 建立值为x,左右指针域为空的新结点 */
p = (struct BTreeNode *)malloc(sizeof(struct BTreeNode));
p->data = x;
p->left = p->right = NULL;
/* 将新结点链接到指针为空的位置 */
if (parent == NULL){
*bst = p;        /* 作为根结点插入 */
}else i

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号