码迷,mamicode.com
首页 > 其他好文 > 详细

用循环的方法实现二叉树的镜像

时间:2014-08-11 17:56:42      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:二叉树

程序中包含了递归方法 和循环方法
#include <iostream>
#include <queue>
using namespace std;
struct tree
{
	int value;
	tree *left;
	tree *right;
};
tree *create()
{
	int n;
	cin>>n;
	if (n == 0)
	{
		return NULL;
	}
	else
	{
		tree *root = new tree;
		root->value = n;
		root->left = create();
		root->right = create();
		return root;
	}
	
}
void pre(tree *root)
{
	if (root == NULL)
	{
		return;
	}
	else
	{
		cout<<root->value<<" ";
		pre(root->left);
		pre(root->right);
	}
}
void mirror_digui(tree *root)
{
	if (root == NULL || (root->left==NULL && root->right==NULL))
	{
		return ;
	}
	tree *temp = root->left;
	root->left = root->right;
	root->right = temp;
	if (root->left != NULL)
	{
		mirror_digui(root->left);
	}
	if (root->right != NULL)
	{
		mirror_digui(root->right);
	}


}
void mirror_xunhuan(tree *root)
{
	if (root == NULL || (root->left==NULL && root->right==NULL))
	{
		return ;
	}
	queue<tree *> q;
	q.push(root);
	while(!q.empty())
	{
		tree *newroot = q.front();
		q.pop();
		tree *temp = newroot->left;
		newroot->left = newroot->right;
		newroot->right = temp;
		if (newroot->left!=NULL)
		{
			q.push(newroot->left);
		}
		if (newroot->right!=NULL)
		{
			q.push(newroot->right);
		}
		
			
	}
}
int main()
{
	tree *root = create();
	pre(root);
	cout<<endl;
	mirror_xunhuan(root);
	pre(root);
	
	return 0;


}


用循环的方法实现二叉树的镜像,布布扣,bubuko.com

用循环的方法实现二叉树的镜像

标签:二叉树

原文地址:http://blog.csdn.net/fighting_doudou/article/details/38494421

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!