1379 Find a Corresponding Node of a Binary Tree in a Clone of That Tree
Last updated
Was this helpful?
Last updated
Was this helpful?
Given two binary trees original
and cloned
and given a reference to a node target
in the original tree.
The cloned
tree is a copy of the original
tree.
Return a reference to the same node in the cloned
tree.
Note that you are not allowed to change any of the two trees or the target
node and the answer must be a reference to a node in the cloned
tree.
Follow up: Solve the problem if repeated values on the tree are allowed.
Example 1:
Example 2:
Example 3:
Example 4:
Constraints:
The number of nodes in the tree
is in the range [1, 10^4]
.
The values of the nodes of the tree
are unique.
target
node is a node from the original
tree and is not null
.
其实这题一看就知道是同时遍历两棵树,可以用bfs队列,或者dfs递归,或者iteration来前中后序遍历。因为遍历模板背的不熟悉,所以选择了用中序stack。T:O(n), S:O(height)
Example 5: