3.18 二叉树的镜像

操作给定的二叉树,将其变换为源二叉树的镜像。 struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) { } }; class Solution { public: void Mirror(
相关文章
相关标签/搜索