我是靠谱客的博主 伶俐白羊,最近开发中收集的这篇文章主要介绍二叉树的层次遍历,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

二叉树从上到下遍历:

利用栈,先将根节点压入栈中,出栈,遍历该节点的左孩子,右孩子,依次把该节点的右孩子,左孩子压入栈中。

#include<iostream>
#include<stack>
using namespace std;
struct BinaryTreeNode
{
	BinaryTreeNode(int value)
		:_value(value)
		,_left(NULL)
		,_right(NULL)
	{
	}
	int _value;
	BinaryTreeNode* _left;
	BinaryTreeNode* _right;
};
class BinaryTree
{
public:
	BinaryTree(int* a,int len)
	{
		int index=0;
		_root=_create(a,index,len);
	}
	void Pre()//前序遍历
	{
		PreOrder(_root);
	}
	void Floor_Print()//层次遍历
	{
		Floor(_root);
	}
private:
	BinaryTreeNode* _create(int* a,int &index,int len)
	{
		BinaryTreeNode* root=NULL;
		if(a[index]!='#'&&index<len)
		{
			root=new BinaryTreeNode(a[index]);
			root->_left=_create(a,++index,len);
			root->_right=_create(a,++index,len);
		}
		return root;

	}
	void PreOrder(BinaryTreeNode* root)
	{
		if(root==NULL)
		{
			return;
		}
		cout<<root->_value<<"->";
		PreOrder(root->_left);
		PreOrder(root->_right);
	}
	void Floor(BinaryTreeNode* root)  //依次将根节点入栈,然后出栈,遍历节点的左孩子,右孩子,
		                              然后将该节点的右孩子入栈,左孩子入栈。
	{
		if(root==NULL)
		{
			return;
		}
		stack<BinaryTreeNode*> s1;
		s1.push(root);
		cout<<root->_value<<"->";
		while(!s1.empty())
		{
			BinaryTreeNode* cur=s1.top();
			s1.pop();
			
			if(cur->_left)
			cout<<cur->_left->_value<<"->";
			if(cur->_right)
			cout<<cur->_right->_value<<"->";
			if(cur->_right)
			s1.push(cur->_right);
			if(cur->_left)
			s1.push(cur->_left);

		}
	}
private:
	BinaryTreeNode* _root;
};
int main()
{
	int a[]={1,2,3,'#','#',4,'#','#',5,6,'#',7};
	BinaryTree b1(a,sizeof(a)/sizeof(a[0]));
	b1.Pre();
	cout<<endl;
	b1.Floor_Print();
	system("pause");
    return 0;
}


转载于:https://blog.51cto.com/youngyoungla/1776012

最后

以上就是伶俐白羊为你收集整理的二叉树的层次遍历的全部内容,希望文章能够帮你解决二叉树的层次遍历所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部