對稱二叉樹--》leetcode

將根樹進行拆分遍歷,左子樹的右節點要與右子樹的左節點相等。java 下面是遞歸的作法:code class Solution { public boolean isSymmetric(TreeNode root) { if(root==null)return true; return check(root.left,root.right); }
相關文章
相關標籤/搜索