【Leetcode】【python】Same Tree 相同的树 发表于 2019-08-01 更新于 2021-08-22 分类于 旧文归档 阅读次数: Valine: 题目大意判断两颗二叉树是否完全相同 解题思路简单题,一开始思考半天中序遍历的解法,发现太绕。 其实应该就是先根节点,再左右,也就是前序遍历。 代码123456class Solution(object): def isSameTree(self, p, q): if p == None and q == None: return True if p and q and p.val == q.val: return self.isSameTree(p.left, q.left) and self.isSameTree(p.right, q.right) return False 总结前序中序后序遍历,各有优势,多扩散思维。