5.1.2—二叉树的遍历—Binary Tree Inorder Traversal

描述
Given a binary tree, return the inorder traversal of its nodes’ values.
For example: Given binary tree {1,#,2,3},
1
\
2
/
3
return [1,3,2].

Note: Recursive solution is trivial, could you do it iteratively?


#include "BinaryTree.h"
#include <stack>
#include<vector>
using namespace std;
//===二叉树的中序遍历,递归版本
void MidorderTraversal(BinaryTreeNode *proot)
{
	if (proot)
	{
		if (proot->m_pLeft)
			MidorderTraversal(proot->m_pLeft);
		cout << proot->m_nValue << " ";
		if (proot->m_pRight)
			MidorderTraversal(proot->m_pRight);
	}
}
//===二叉树的中序遍历,迭代版本
void MidorderTraversal2(BinaryTreeNode *proot)
{
	stack<BinaryTreeNode*> temp;
	vector<int> cahe;
	BinaryTreeNode *p = proot;

	while ((!temp.empty())||p!=NULL)
	{
		while (p)
		{
			temp.push(p);
			p = p->m_pLeft;
		}
		if (!temp.empty())
		{
			p = temp.top();
			temp.pop();
			cahe.push_back(p->m_nValue);
			p = p->m_pRight;
		}
	}
	//======
	for (int i = 0; i < cahe.size(); i++)
		cout << cahe[i] << " ";
	cout << endl;
}
// ====================测试代码====================
//            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);
	//===
	//PrintTree(pNode8);
	//===
	MidorderTraversal(pNode8);
	cout << endl;
	//===
	MidorderTraversal2(pNode8);

	//==
	DestroyTree(pNode8);
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值