题解 | #相同的二叉树# | Golang
相同的二叉树
https://www.nowcoder.com/practice/5a3b2cf4211249c89d6ced7987aeb775
package main import . "nc_tools" /* * type TreeNode struct { * Val int * Left *TreeNode * Right *TreeNode * } */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param root1 TreeNode类 * @param root2 TreeNode类 * @return bool布尔型 */ func isSameTree( root1 *TreeNode , root2 *TreeNode ) bool { if root1 == nil && root2 == nil { return true } if root1 == nil || root2 == nil { return false } return root1.Val == root2.Val && isSameTree(root1.Left, root2.Left) && isSameTree(root1.Right, root2.Right) }