标签:node span tee 它的 函数 mirror ati off ror
题目:
输入一个函数,输入一个二叉树,该函数输出它的镜像
代码:
public class Sixteenth {
public static class BinaryTreeNode{
BinaryTreeNode leftChild; BinaryTreeNode rightChild; int val; } public static void getMirrorBinaryTree(BinaryTreeNode node){ if(node != null){ BinaryTreeNode temp = node.leftChild; node.leftChild = node.rightChild; node.rightChild = temp; getMirrorBinaryTree(node.leftChild); getMirrorBinaryTree(node.rightChild); } } }
标签:node span tee 它的 函数 mirror ati off ror
原文地址:https://www.cnblogs.com/HarSong13/p/11330480.html