递归方法
/**
* Definition for a binary tree node.
* type TreeNode struct {
* Val int
* Left *TreeNode
* Right *TreeNode
* }
*/
func isSameTree(p *TreeNode, q *TreeNode) bool {
if p==nil&&q==nil{
return true
}
if p==nil||q==nil||p.Val!=q.Val{
return false
}
return isSameTree(p.Right,q.Right)&&isSameTree(p.Left,q.Left)
}
时间复杂度O(N)
空间复杂度O(1)
有疑问加站长微信联系(非本文作者)