用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - c++代码库

数据结构与算法----3.2 判别二叉树是否为二叉排序树

2019-07-21 作者: Ryan2019举报

[c++]代码库

#include <iostream>
using namespace std;
typedef int KeyType;
struct ElemType{KeyType key;};
typedef struct BiTNode
{
    ElemType data;
	BiTNode *lc,*rc;
}*BiTree;

bool realBT(BiTree T); //判断是不是二叉排序树
bool realBT(BiTree T,BiTree &pre);
void BiTreeLists(BiTree T, void visit(ElemType));
BiTree CreatNode(ElemType x);
bool InsertBST(BiTree &T, ElemType x) ;
void visit(ElemType data);
void CreatBST(BiTree &T, int n, ElemType a[]);
void inorder(BiTree T);
int main()
{
	BiTree T;int n=7;
	ElemType s[]={7,3,1,5,11,9,13};
	
	CreatBST(T,n,s);
	cout<<"二叉树(广义表形式)为:";BiTreeLists(T,visit);
	cout<<"\n二叉树的中序序列为:"<<endl;
    inorder(T);
	cout<<"\n此二叉树"<<( realBT(T)?"是":"不是")<<"二叉排序树!"<<endl;
	return 0;
}
BiTree CreatNode(ElemType x)
{
	BiTree p;
	p = new BiTNode; p->data = x;
	p->lc = p->rc = NULL;
	return p;
}
void BiTreeLists(BiTree T, void visit(ElemType))
{  
	if (!T) { cout << "#"; return; }
	visit(T->data);
	if (T->lc || T->rc) {
		cout << "(";
		BiTreeLists(T->lc, visit);
		cout << ",";
		BiTreeLists(T->rc, visit);
		cout << ")";
	}
}
void CreatBST(BiTree &T, int n, ElemType a[])
{
	T = NULL;
	for (int i = 0; i < n; i++) {
		InsertBST(T, a[i]);
	}
}

void visit(ElemType data)
{
	cout << data.key;
}
bool InsertBST(BiTree &T, ElemType x) 
{
	if (!T) {
		T = CreatNode(x); return true;
	}
	else if (T->data.key == x.key) {
		return false;
	}
	else if (x.key < T->data.key) {
		return InsertBST(T->lc, x);
	}
	else {
		return InsertBST(T->rc, x);
	}
}
bool realBT(BiTree T,BiTree &pre)
{ 
	if(!T)return true;
    if(!realBT(T->lc,pre))return false;
	if(pre&&pre->data.key>=T->data.key)return false;
	pre=T;
	return realBT(T->rc,pre);
} 
bool realBT(BiTree T)
{
	BiTree pre=NULL;
	return realBT(T,pre);
}
void inorder(BiTree T)
{
	if (!T)		return;
	inorder(T->lc);
	cout<<T->data.key<<" ";
	inorder(T->rc);
}


网友评论    (发表评论)


发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...