实践操作——验证swap()函数是否正确

在写转换二叉树的swap()函数时发现和教材答案有所不同,为验证正确性写了如下代码测试

测试用的是一个三层满二叉树,共7个结点。给出先序和中序序列以创建二叉树。该树层次遍历顺序为ABCDEFG

BiTree PreInCreat(char A[],char B[],int l1,int h1,int l2,int h2){//创建二叉树
	int i,llen,rlen;
	BiTree root;
	root=(BiNode*)malloc(sizeof(BiNode));
	root->data=A[l1];
	for(i=l2;B[i]!=root->data;i++);
	llen=i-l2;
	rlen=h2-i;
	if(llen)
		root->lchild=PreInCreat(A,B,l1+1,l1+llen,l2,l2+llen-1);
	else
		root->lchild=NULL;
	if(rlen)
		root->rchild=PreInCreat(A,B,h1-rlen+1,h1,h2-rlen+1,h2);
	else
		root->rchild=NULL;
	return root;
}

BiTree swap(BiTree p){//交换二叉树
	BiTree Temp;//Temp作为临时存储,存放即将被覆盖的lchild
	if(p){
		Temp=p->lchild;
		p->lchild=swap(p->rchild);
		p->rchild=swap(Temp);
		return p;
	}
	else return NULL;
}

void InOrder(BiTree p){//中序遍历二叉树
	if(p!=NULL){
		InOrder(p->lchild);
		cout<<p->data<<en
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值