已经是最新一篇文章了!
已经是最后一篇文章了!
27. 二叉树的镜像
娶妻无媒毋须恨,书中有女颜如玉。
27. 二叉树的镜像
题目描述
解题思路
public TreeNode Mirror(TreeNode root) {
if (root == null)
return root;
swap(root);
Mirror(root.left);
Mirror(root.right);
return root;
}
private void swap(TreeNode root) {
TreeNode t = root.left;
root.left = root.right;
root.right = t;
}
版权声明:如无特别声明,本站收集的文章归 cs-notes 所有。 如有侵权,请联系删除。
联系邮箱: GenshinTimeStamp@outlook.com
本文标题:《 27. 二叉树的镜像 》