美文网首页
leetcode第101题对称二叉树

leetcode第101题对称二叉树

作者: CoderAPang | 来源:发表于2018-06-11 19:08 被阅读0次

    方法一:递归

    /**
     * Definition for a binary tree node.
     * public class TreeNode {
     *     int val;
     *     TreeNode left;
     *     TreeNode right;
     *     TreeNode(int x) { val = x; }
     * }
     */
    class Solution {
        public boolean isSymmetric(TreeNode root) {
            if(root == null)return true;
            return isMirror(root.left,root.right);
        }
        public boolean isMirror(TreeNode p,TreeNode q){
            if(p==null&q==null)return true;
            if(q!=null&p==null)return false;
            if(p!=null&q==null)return false;
            return (p.val==q.val&isMirror(p.left,q.right)&isMirror(p.right,q.left));
        }
    }
    

    [题目链接][1]
    [1]:https://leetcode-cn.com/problems/symmetric-tree/description/

    相关文章

      网友评论

          本文标题:leetcode第101题对称二叉树

          本文链接:https://www.haomeiwen.com/subject/uwoheftx.html