[LintCode] 翻转二叉树

简介: 递归实现: 1 /** 2 * Definition of TreeNode: 3 * class TreeNode { 4 * public: 5 * int val; 6 * TreeNode *left, *right; 7 * ...

递归实现:

 1 /**
 2  * Definition of TreeNode:
 3  * class TreeNode {
 4  * public:
 5  *     int val;
 6  *     TreeNode *left, *right;
 7  *     TreeNode(int val) {
 8  *         this->val = val;
 9  *         this->left = this->right = NULL;
10  *     }
11  * }
12  */
13 class Solution {
14 public:
15     /**
16      * @param root: a TreeNode, the root of the binary tree
17      * @return: nothing
18      */
19     void invertBinaryTree(TreeNode *root) {
20         // write your code here
21         if (!root) return;
22         swap(root -> left, root -> right);
23         invertBinaryTree(root -> left);
24         invertBinaryTree(root -> right);
25     }
26 };

迭代实现:

 1 /**
 2  * Definition of TreeNode:
 3  * class TreeNode {
 4  * public:
 5  *     int val;
 6  *     TreeNode *left, *right;
 7  *     TreeNode(int val) {
 8  *         this->val = val;
 9  *         this->left = this->right = NULL;
10  *     }
11  * }
12  */
13 class Solution {
14 public:
15     /**
16      * @param root: a TreeNode, the root of the binary tree
17      * @return: nothing
18      */
19     void invertBinaryTree(TreeNode *root) {
20         // write your code here
21         if (!root) return;
22         queue<TreeNode*> level;
23         level.push(root);
24         while (!level.empty()) {
25             TreeNode* node = level.front();
26             level.pop();
27             swap(node -> left, node -> right);
28             if (node -> left) level.push(node -> left);
29             if (node -> right) level.push(node -> right);
30         }
31     }
32 };

 

目录
相关文章
|
11天前
力扣226:翻转二叉树
力扣226:翻转二叉树
18 0
|
11天前
|
Java C++ Python
leetcode-226:翻转二叉树
leetcode-226:翻转二叉树
17 0
|
6月前
Leetcode226.翻转二叉树
Leetcode226.翻转二叉树
21 0
|
7月前
leetcode(翻转二叉树)
leetcode(翻转二叉树)
24 0
|
3天前
[LeetCode]—— 226——翻转二叉树
[LeetCode]—— 226——翻转二叉树
LeetCode | 226. 翻转二叉树
LeetCode | 226. 翻转二叉树
|
11天前
|
存储 算法
算法题解-翻转二叉树
算法题解-翻转二叉树
LeetCode-156 上下翻转二叉树
LeetCode-156 上下翻转二叉树
|
11天前
二叉树OJ题:LeetCode--226.翻转二叉树
二叉树OJ题:LeetCode--226.翻转二叉树
23 0
|
7月前
【Leetcode -110.平衡二叉树 -226.翻转二叉树】
【Leetcode -110.平衡二叉树 -226.翻转二叉树】
18 0