二叉排序树

//二叉排序树
//BSTNode
#include<stdio.h>
#include<iostream>
using namespace std;
#include<bits/stdc++.h>
//#include<stdlib.h>//malloc
//二叉排序树的二叉链表存储
typedef struct 
{
	int key;//关键字项 
	int otherinfo;//其他数据项 
}Elemtype;//每个节点的数据域的类型名

typedef struct BSTNode
{
	Elemtype data;//每个节点的数据域包括关键字项和其他数据项 
	struct BSTNode *lchild,*rchild;//左右孩子指针 
}BSTNode,*BSTree; 

//二叉排序树的插入
void InsertBST(BSTree &T,Elemtype e)
{//当二叉排序树中不存在关键字等于e.key的数据元素时,则插入该元素 
	if(T==NULL)//当树为空时 
	{
		//T = (BSTree)malloc(sizeof(BSTNode));
		//T=new BSTNode;
		BSTree S;
		S = new BSTNode;
		S->data = e;
		S->lchild=S->rchild=NULL;
		T=S;
	 } 
	 else
	 {
	 	if(e.key<T->data.key) InsertBST(T->lchild,e);
	 	else 
		 {
	 		if(e.key>T->data.key) InsertBST(T->rchild,e);
		 }
	 }
 } 

//二叉排序树的创建
void CreateBST(BSTree &T)
{
	T=NULL;
	Elemtype e;
	cin>>e.otherinfo;
	e.key=e.otherinfo;
	while(e.otherinfo!=(-1))//原本是e.key
	{
		InsertBST(T,e);
		cin>>e.otherinfo;
		e.key=e.otherinfo;
	}
 } 
 
//中序遍历树,即将树从小到大排序
void medorder(BSTree &T)
{
	if(T==NULL) return;
	else
	{
		medorder(T->lchild);
		printf("%d ",T->data.otherinfo);
		medorder(T->rchild);
	}
 } 
int main()
{
	BSTree T;
	CreateBST(T);
	medorder(T);
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值