練習題之二叉樹的鏡像

題目:this 操做給定的二叉樹,將其變換爲源二叉樹的鏡像。 代碼實現:code /** public class TreeNode { int val = 0; TreeNode left = null; TreeNode right = null; public TreeNode(int val) { this.val = val;
相關文章
相關標籤/搜索