翻译

  1. 将下图中上面的二叉树转换为以下的形式。详细为每一个左孩子节点和右孩子节点互换位置。

原文

  1. 如上图

分析

每次关于树的题目出错都在于边界条件上……所以这次细致多想了一遍:

  1. void swapNode(TreeNode* tree) {
  2. if (tree == NULL || (tree->left == NULL && tree->right == NULL)) {}
  3. else if (tree->left == NULL && tree->right != NULL) {
  4. TreeNode* temp = tree->right;
  5. tree->left = temp;
  6. tree->right = nullptr;
  7. }
  8. else if (tree->right == NULL && tree->left != NULL) {
  9. TreeNode* temp = tree->left;
  10. tree->right = temp;
  11. tree->left = nullptr;
  12. }
  13. else {
  14. TreeNode* temp = tree->left;
  15. tree->left = tree->right;
  16. tree->right = temp;
  17. }
  18. }

不过这样还不够,它不过互换了一次。所以我们要用到递归:

  1. if(tree->left != NULL)
  2. swapNode(tree->left);
  3. if(tree->right != NULL)
  4. swapNode(tree->right);

最后在题目给定的函数内部调用自己写的这个递归函数就好。

  1. TreeNode* invertTree(TreeNode* root) {
  2. if (root == NULL) return NULL;
  3. swapNode(root);
  4. return root;
  5. }

代码

  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. void swapNode(TreeNode* tree) {
  13. if (tree == NULL || (tree->left == NULL && tree->right == NULL)) {}
  14. else if (tree->left == NULL && tree->right != NULL) {
  15. TreeNode* temp = tree->right;
  16. tree->left = temp;
  17. tree->right = nullptr;
  18. }
  19. else if (tree->right == NULL && tree->left != NULL) {
  20. TreeNode* temp = tree->left;
  21. tree->right = temp;
  22. tree->left = nullptr;
  23. }
  24. else {
  25. TreeNode* temp = tree->left;
  26. tree->left = tree->right;
  27. tree->right = temp;
  28. }
  29. if (tree->left != NULL)
  30. swapNode(tree->left);
  31. if (tree->right != NULL)
  32. swapNode(tree->right);
  33. }
  34. TreeNode* invertTree(TreeNode* root) {
  35. if (root == NULL) return NULL;
  36. swapNode(root);
  37. return root;
  38. }
  39. };

学习

自己的解决方式还是太0基础,所以来学习学习大神的解法:

  1. TreeNode* invertTree(TreeNode* root) {
  2. if(nullptr == root) return root;
  3. queue<TreeNode*> myQueue; // our queue to do BFS
  4. myQueue.push(root); // push very first item - root
  5. while(!myQueue.empty()){ // run until there are nodes in the queue
  6. TreeNode *node = myQueue.front(); // get element from queue
  7. myQueue.pop(); // remove element from queue
  8. if(node->left != nullptr){ // add left kid to the queue if it exists
  9. myQueue.push(node->left);
  10. }
  11. if(node->right != nullptr){ // add right kid
  12. myQueue.push(node->right);
  13. }
  14. // invert left and right pointers
  15. TreeNode* tmp = node->left;
  16. node->left = node->right;
  17. node->right = tmp;
  18. }
  19. return root;
  20. }

争取以后少用递归了。加油!

LeetCode 226 Invert Binary Tree(转换二叉树)的更多相关文章

  1. leetcode 226 Invert Binary Tree 翻转二叉树

    大牛没有能做出来的题,我们要好好做一做 Invert a binary tree. 4 / \ 2 7 / \ / \ 1 3 6 9 to 4 / \ 7 2 / \ / \ 9 6 3 1 Tri ...

  2. Leetcode 226 Invert Binary Tree python

    题目: Invert a binary tree. 翻转二叉树. 递归,每次对节点的左右节点调用invertTree函数,直到叶节点. python中也没有swap函数,当然你可以写一个,不过pyth ...

  3. LeetCode 226. Invert Binary Tree (反转二叉树)

    Invert a binary tree. 4 / \ 2 7 / \ / \ 1 3 6 9 to 4 / \ 7 2 / \ / \ 9 6 3 1 Trivia:This problem was ...

  4. 【LeetCode】226. Invert Binary Tree 翻转二叉树(Python)

    作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 递归 迭代 日期 题目地址: https://lee ...

  5. Leetcode 226 Invert Binary Tree 二叉树

    交换左右叶子节点 /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * ...

  6. Leetcode 226. Invert Binary Tree(easy)

    Invert a binary tree. 4 / \ 2 7 / \ / \ 1 3 6 9 to 4 / \ 7 2 / \ / \ 9 6 3 1 Trivia:This problem was ...

  7. LeetCode 226 Invert Binary Tree 解题报告

    题目要求 Invert a binary tree. 题目分析及思路 给定一棵二叉树,要求每一层的结点逆序.可以使用递归的思想将左右子树互换. python代码 # Definition for a ...

  8. 226. Invert Binary Tree 翻转二叉树

    [抄题]: Invert a binary tree. 4 / \ 2 7 / \ / \ 1 3 6 9 to 4 / \ 7 2 / \ / \ 9 6 3 1 [暴力解法]: 时间分析: 空间分 ...

  9. Leetcode 226. Invert Binary Tree

    Invert a binary tree. 4 / \ 2 7 / \ / \ 1 3 6 9 to 4 / \ 7 2 / \ / \ 9 6 3 1 class Solution(object): ...

随机推荐

  1. 【Luogu】P3387缩点(Tarjan缩点+深搜DP)

    题没什么好说的,因为是模板题.求值我用的是dfs. 不能直接在原图上dfs,因为原图上有环的话会发生一些滑稽的事情.所以我们要用Tarjan缩点.因为此题点权全为正,所以如果在图上走一个环当然可以全走 ...

  2. intellij idea 使用用到的问题

    1.github error setting certificate verify locations使用github时报错,解决方法: git config --system http.sslcai ...

  3. writeValueAsString封装成工具类

    封装成工具类 <span style="font-family:Microsoft YaHei;">public static String toJsonByObjec ...

  4. 火柴排队(codevs 3286)

    题目描述 Description 涵涵有两盒火柴,每盒装有 n 根火柴,每根火柴都有一个高度.现在将每盒中的火柴各自排成一列,同一列火柴的高度互不相同,两列火柴之间的距离定义为:,其中 ai表示第一列 ...

  5. 解析XML字符串为json对象

    var overtime='<?xml version="1.0" encoding="UTF-8"?><response><co ...

  6. linux-起步

    学习网站: linux中国开源社区 Vmware下载与安装 https://blog.csdn.net/Ywaken/article/details/78839005 https://blog.csd ...

  7. C语言函数调用及栈帧结构

    source:http://blog.csdn.net/qq_29403077/article/details/53205010 一.地址空间与物理内存 (1)地址空间与物理内存是两个完全不同的概念, ...

  8. 有关 GCC 及 JNA 涉及动态库/共享库时处理库文件名的问题

    动态库尤其是共享库在 Linux 环境下普遍存在库文件名包含版本号的情况,比如 Linux 环境下经常会发现一个共享库的真实文件名是 libfoo.so.1.1.0,而同时会有多个指向该真实库文件的软 ...

  9. centos tomcat 关于日志

    一.实时查看tomcat的日志 1.先切换到tomcat5/logs 2.tail -f catalina.out 3.这样运行时就可以实时查看运行日志了 例如: cd /tomcat7/logs t ...

  10. vue之组件理解(一)

    组件是可复用的 Vue 实例,所以它们与 new Vue 接收相同的选项,例如 data.computed.watch.methods 以及生命周期钩子等.仅有的例外是像 el 这样根实例特有的选项. ...