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

226. 翻转二叉树

时间:2020-05-24 13:56:30      阅读:47      评论:0      收藏:0      [点我收藏+]

标签:none   auto   c++   app   code   swap   pre   ==   init   

翻转一棵二叉树。

示例:

输入:

4
/ \
2 7
/ \ / \
1 3 6 9
输出:

4
/ \
7 2
/ \ / \
9 6 3 1

python

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None

class Solution:
    def invertTree(self, root: TreeNode) -> TreeNode:
        if not root:
            return None
        stack =[root]
        while stack:
            node=stack.pop(0)
            node.left,node.right=node.right,node.left
            if node.left:
                stack.append(node.left)
            if node.right:
                stack.append(node.right)
        return root

 c++

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    TreeNode* invertTree(TreeNode* root) {
        if(root==NULL)return root;
        auto q=queue<TreeNode*>();
        q.push(root);
        while(!q.empty()){
            auto n=q.front();q.pop();
            swap(n->left,n->right);
            if(n->left!=nullptr){
                q.push(n->left);
            }
            if(n->right!=nullptr){
                q.push(n->right);
            }
        }
        return root;
    }
};

226. 翻转二叉树

标签:none   auto   c++   app   code   swap   pre   ==   init   

原文地址:https://www.cnblogs.com/xxxsans/p/12950503.html

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