劍指Offer: 二叉樹的鏡像 (java代碼實現)

解題思路 將當前節點的左子樹和右子樹交換 遞歸實現 下面是java代碼實現 public class Solution { public void Mirror(TreeNode root) { if(root == null) { return; } swap(root); Mirror(root.l
相關文章
相關標籤/搜索