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

leetcode 226 Invert Binary Tree 翻转二叉树

时间:2019-02-27 01:42:23      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:方法   solution   init   else   color   col   ==   code   ima   

技术图片

C++代码,方法层序+互换左右孩子

 

 1 /**
 2  * Definition for a binary tree node.
 3  * struct TreeNode {
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 8  * };
 9  */
10 class Solution {
11 public:
12     TreeNode* invertTree(TreeNode* root) {
13         //层序遍历然后互换每一层的左右孩子
14         if(root==NULL) return root;
15         queue<TreeNode*> q;
16         q.push(root);
17         while(!q.empty()){
18             TreeNode* cur=q.front();
19             TreeNode* temp;
20             q.pop();
21             if(cur->left!=NULL) q.push(cur->left);
22             if(cur->right!=NULL) q.push(cur->right);
23             if(cur->left!=NULL&&cur->right==NULL){
24                 cur->right=cur->left;cur->left=NULL;
25             }else if(cur->left==NULL&&cur->right!=NULL){
26                 cur->left=cur->right;cur->right=NULL;
27             }else if(cur->left!=NULL&&cur->right!=NULL){
28                 temp=cur->left;
29                 cur->left=cur->right;
30                 cur->right=temp;
31             }
32         }
33         return root;
34     }
35 };

 

leetcode 226 Invert Binary Tree 翻转二叉树

标签:方法   solution   init   else   color   col   ==   code   ima   

原文地址:https://www.cnblogs.com/joelwang/p/10441137.html

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