递归法:

  1. 递归终止条件:
pRoot == NULL
  1. 依次翻转二叉树的左右子树:
swap(pRoot->left, pRoot->right)
  1. 遍历左右子树:
Mirror(pRoot->left)
Mirror(pRoot->right)