求一棵二叉树的镜像

求一棵二叉树的镜像

     二叉树的镜像就是将二叉树的左右子树都交换位置得到的一棵二叉树。所以我们可以通过递归来解决。


下边给出代码实现:

 void _Mirror(Node* root)
    {
       if(root == NULL)
           return;
       if(root->_left == NULL && root->_right == NULL)
           return;
       //交换结点的左右指针
       swap(root->_left,root->_right);
       if(root->_left)
           _Mirror(root->_left);
       if(root->_right)
           _Mirror(root->_right);
    }
下边给出完整的测试代码:

#pragma once
#include<iostream>
using namespace std;
#include<stack>
#include<assert.h>
template<typename T>
struct TreeNode
{
    T _data;
    TreeNode* _left;
    TreeNode* _right;
    TreeNode(const T& x)
       :_data(x)
       ,_left(NULL)
       ,_right(NULL)
    {}
};
template<typename T>
class BinaryTree
{
    typedef TreeNode<T> Node;
public:
    BinaryTree(T a[],int size,const T& invalid)
    {
       size_t index = 0;
       _root = _Create(a,size,index,invalid);
    }
    //求二叉树的镜像
    void Mirror()
    {
       _Mirror(_root);
    }
    void PreOrderR()
    {
       _PreOrderR(_root);
       cout<<endl;
    }
    void PreOrderNonR()
    {
       stack<Node*> s;
       Node* cur = _root;
       while(cur || !s.empty())
       {
           while(cur)
           {
               cout<<cur->_data<<" ";
               s.push(cur);
               cur = cur->_left;
           }
           Node* top = s.top();
           s.pop();
           cur = top->_right;
       }
       cout<<endl;
    }
    size_t Depth()
    {
       return _Depth(_root);
    }
protected:
    Node* _Create(T a[],int size,size_t& index,const T& invalid)
    {
       assert(a);
       Node* root = NULL;
       while(index < size && a[index] != invalid)
       {
           root = new Node(a[index]);
           root->_left = _Create(a,size,++index,invalid);
           root->_right = _Create(a,size,++index,invalid);
       }
       return root;
    }
    void _PreOrderR(Node* root)
    {
       if(root == NULL)
           return;
       cout<<root->_data<<" ";
       _PreOrderR(root->_left);
       _PreOrderR(root->_right);
    }
    void _Mirror(Node* root)
    {
       if(root == NULL)
           return;
       if(root->_left == NULL && root->_right == NULL)
           return;
       //交换结点的左右指针
       swap(root->_left,root->_right);
       if(root->_left)
           _Mirror(root->_left);
       if(root->_right)
           _Mirror(root->_right);
    }
    size_t _Depth(Node* root)
    {
       if(root == NULL)
           return 0;
       int left = _Depth(root->_left);
       int right = _Depth(root->_right);
       return left > right ? left + 1 : right +1;
    }
private:
    Node* _root;
};
void Test()
{
    int array[] = {8,6,5,'#','#',7,'#','#',10,9,'#','#',11};
    BinaryTree<int> bt(array,sizeof(array)/sizeof(array[0]),'#');
    bt.PreOrderNonR();
    bt.PreOrderR();
    bt.Mirror();
    bt.PreOrderNonR();
    bt.PreOrderR();
    cout<<"Depth?"<<bt.Depth()<<endl;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值