1 题目
Given two binary trees, write a function to check if they are equal or not.
Two binary trees are considered equal if they are structurally identical and the nodes have the same value.
Tree Depth-first Search
2 思路
好久没做树的题目了,选了一道最简单的树的题目。看别人答案代码思路就很简单了,自己想,想半天思路并不是很好,各种漏洞。
参考:
3 代码
public boolean isSameTree(TreeNode p,TreeNode q){ if (p == null || q == null) return (p == q); return (p.val == q.val) && isSameTree(p.left, q.left) && isSameTree(p.right, q.right); }