二叉树的镜像

操作给定的二叉树,将其变换为源二叉树的镜像。 

输入描述:
二叉树的镜像定义:源二叉树 
    	    8
    	   /  \
    	  6   10
    	 / \  / \
    	5  7 9 11
    	镜像二叉树
    	    8
    	   /  \
    	  10   6
    	 / \  / \
    	11 9 7  5
class Solution {
public:
    void Mirror(TreeNode *pRoot) {
      if(pRoot==NULL)
          return ;
        if(pRoot->left==NULL&&pRoot->right==NULL)
            return ;
        TreeNode *tmp=pRoot->left;
        pRoot->left=pRoot->right;
        pRoot->right=tmp;
        if(pRoot->left)
            Mirror(pRoot->left);
        if(pRoot->right)
            Mirror(pRoot->right);
        
    }
};

 

posted on 2016-04-05 19:03  RenewDo  阅读(132)  评论(0编辑  收藏  举报

导航