数据结构-二叉排序树

这篇博客介绍了如何创建和操作二叉搜索树(BST)。包括了`SearchBST`函数用于查找节点,`InsertBST`函数用于插入元素,以及`CreatBST`函数用于构建BST。示例代码展示了如何插入一系列整数并进行查找操作。
摘要由CSDN通过智能技术生成
#include <iostream>
using namespace std;
#include<stdlib.h>
#define MAXSIZE 50
typedef int KeyType;
typedef int ElemType;
typedef struct BSTNode{
   ElemType data;
   struct BSTNode *lchild,*rchild;
}BSTNode,*BSTree;

void SearchBST(BSTree T,KeyType key);
void InsertBST(BSTree &T,ElemType e);
void CreatBST(BSTree &T);
 
void SearchBST(BSTree T,KeyType key)
{
	if(T)
		cout<<T->data<<" ";
	if(!T){
		cout<<endl;
		cout<<"没找到";
	}
	else if(key==T->data){
		cout<<endl;
		cout<<"找到了";
	}
	else if(key<T->data){
		SearchBST(T->lchild,key);
	}
	else{
		SearchBST(T->rchild,key);
	}
}
void InsertBST(BSTree &T,int e)
{
	if(!T)
	{
		BSTNode *S;
		S=new BSTNode;
		S->data=e;
		S->lchild=S->rchild=NULL;
		T=S;
	}
	else if(e<(T->data))
	InsertBST(T->lchild,e);
	else if(e>(T->data))
	InsertBST(T->rchild,e);
	
}
void CreatBST(BSTree &T)
{
	T=NULL;
	int e;
	cin>>e;
	while(e!=0)
	{
		InsertBST(T,e);
		cin>>e;
	}
	
}
int main () 
{  BSTree T;  ElemType e;  KeyType key;
   CreatBST(T);
   cin>>key;
   SearchBST(T,key);
   return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值