二叉树练习(一)— 判断两颗树结构是否相同

题目:
独立的两棵树a,b。如果a所有结构等于b的所有结构,那么就叫a和b完全相等。

通过递归序调用,看每个节点是否相同。

 public static boolean isSameTree(TreeNode a,TreeNode b){
        //相同为false,不同为true
        //就是a、b只要有一个为null 就为true,return false
        if (a == null ^ b == null){
            return false;
        }
        //为null也代表相同。
        if (a == null && b == null){
            return true;
        }
        return a.val == b.val  && isSameTree(a.left,b.left) && isSameTree(a.right,b.right) ;
    }

你可能感兴趣的:(算法,leetCode,java,数据结构,算法)