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

剑指office--------二叉树的镜像

时间:2020-07-22 20:33:30      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:sub   ret   content   solution   des   describe   root   desc   off   

题目描述

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

输入描述:

二叉树的镜像定义:源二叉树 
    	    8
    	   /      	  6   10
    	 / \  /     	5  7 9 11
    	镜像二叉树
    	    8
    	   /      	  10   6
    	 / \  /     	11 9 7  5

 

 

 1 /*
 2 struct TreeNode {
 3     int val;
 4     struct TreeNode *left;
 5     struct TreeNode *right;
 6     TreeNode(int x) :
 7             val(x), left(NULL), right(NULL) {
 8     }
 9 };*/
10 class Solution {
11 public:
12     void Mirror(TreeNode *pRoot) {
13         if (pRoot==NULL)    return;
14         Swap(pRoot);
15         
16         if (pRoot->left!=NULL)
17             Mirror(pRoot->left);
18         if (pRoot->right!=NULL)
19             Mirror(pRoot->right);
20         return ;
21     }
22     void Swap(TreeNode *pRoot){
23         TreeNode *node=pRoot->left;
24         pRoot->left=pRoot->right;
25         pRoot->right=node;
26         return ;
27     }
28 };

 

剑指office--------二叉树的镜像

标签:sub   ret   content   solution   des   describe   root   desc   off   

原文地址:https://www.cnblogs.com/q1204675546/p/13362567.html

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