5.1.8—二叉树的遍历—Same Tree

描述
Given two binary trees, write a function to check if they are equal or not.
Two binary trees are considered equal if they are structurally identical and the nodes have the same
value.

#include "BinaryTree.h"
#include <stack>
#include<queue>
#include<vector>
#include<algorithm>
using namespace std;
//===判断两棵二叉树是否相同
bool IsSameTwpTree(BinaryTreeNode *proot1, BinaryTreeNode *proot2)
{
	if (proot1&&proot2)
	{
		if (proot1->m_nValue == proot2->m_nValue)
		{
			return (IsSameTwpTree(proot1->m_pLeft, proot2->m_pLeft) && IsSameTwpTree(proot1->m_pRight, proot2->m_pRight));
		}
		else
		{
			return false;
		}
	}
	else if ((!proot1&&proot2) || (proot1&&!proot2))
	{
		return false;
	}
	else
	{
		return true;
	}
}
// ====================测试代码====================
//            8
//        6      10
//       5 7    9  11
int main()
{
	//===
	BinaryTreeNode* pNode8 = CreateBinaryTreeNode(8);
	{
		BinaryTreeNode* pNode6 = CreateBinaryTreeNode(6);
		BinaryTreeNode* pNode10 = CreateBinaryTreeNode(10);
		BinaryTreeNode* pNode5 = CreateBinaryTreeNode(5);
		BinaryTreeNode* pNode7 = CreateBinaryTreeNode(7);
		BinaryTreeNode* pNode9 = CreateBinaryTreeNode(9);
		BinaryTreeNode* pNode11 = CreateBinaryTreeNode(11);

		ConnectTreeNodes(pNode8, pNode6, pNode10);
		ConnectTreeNodes(pNode6, pNode5, pNode7);
		ConnectTreeNodes(pNode10, pNode9, pNode11);
	}
	//===
	BinaryTreeNode* pNode8_1 = CreateBinaryTreeNode(8);
	{
		BinaryTreeNode* pNode6 = CreateBinaryTreeNode(6);
		BinaryTreeNode* pNode10 = CreateBinaryTreeNode(10);
		BinaryTreeNode* pNode5 = CreateBinaryTreeNode(5);
		BinaryTreeNode* pNode7 = CreateBinaryTreeNode(7);
		BinaryTreeNode* pNode9 = CreateBinaryTreeNode(9);
		BinaryTreeNode* pNode11 = CreateBinaryTreeNode(12);

		ConnectTreeNodes(pNode8_1, pNode6, pNode10);
		ConnectTreeNodes(pNode6, pNode5, pNode7);
		ConnectTreeNodes(pNode10, pNode9, pNode11);
	}
	//===
	//PrintTree(pNode8);
	//PrintTree(pNode8_1);
	//===
	
	bool flag = IsSameTwpTree(pNode8, pNode8_1);
	cout << flag << endl;

	DestroyTree(pNode8);
	DestroyTree(pNode8_1);
}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值