标签:problems 返回 public 操作 遍历二叉树 nbsp struct load com
https://leetcode-cn.com/problems/er-cha-shu-de-jing-xiang-lcof/
请完成一个函数,输入一个二叉树,该函数输出它的镜像。
例如输入:
4
/ \
2 7
/ \ / \
1 3 6 9
镜像输出:
4
/ \
7 2
/ \ / \
9 6 3 1
/** * 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* mirrorTree(TreeNode* root) { if(!root) return root; swap(root->left, root->right); mirrorTree(root->left); mirrorTree(root->right); return root; } };
递归
标签:problems 返回 public 操作 遍历二叉树 nbsp struct load com
原文地址:https://www.cnblogs.com/hannah00/p/14387807.html