当前位置: 首页 > 工具软件 > Leaf-go > 使用案例 >

Golang Leetcode 872. Leaf-Similar Trees.go

索令
2023-12-01

思路

先递归找到所有的叶子节点,再循环判断

code

type TreeNode struct {
	Val   int
	Left  *TreeNode
	Right *TreeNode
}

func leaf(root *TreeNode, ret *[]int) {
	if root == nil {
		return
	}
	if root.Left == nil && root.Right == nil {
		*ret = append(*ret, root.Val)
	}
	leaf(root.Left, ret)
	leaf(root.Right, ret)
}
func leafSimilar(root1 *TreeNode, root2 *TreeNode) bool {
	a, b := []int{}, []int{}
	leaf(root1, &a)
	leaf(root2, &b)
	for k, v := range a {
		if b[k] != v {
			return false
		}
	}
	return true
}

更多内容请移步我的repo:https://github.com/anakin/golang-leetcode

 类似资料:

相关阅读

相关文章

相关问答