MCPcopy Create free account
hub / github.com/aizk/algorithm-practice / TreeNode

Struct TreeNode

tree/0100/main.go:43–47  ·  view source on GitHub ↗

给定两个二叉树,编写一个函数来检验它们是否相同。 如果两个树在结构上相同,并且节点具有相同的值,则认为它们是相同的。 示例 1: 输入: 1 1 \ / \ 2 3 2 3 [1,2,3], [1,2,3] 输出: true 示例 2: 输入: 1 1 \ 2 2 [1,2], [1,null,2] 输出: false 示例 3: 输入: 1 1 \ / \ 2 1 1 2 [1,2,1],

Source from the content-addressed store, hash-verified

source not stored for this graph (policy: none)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected