Merge Two Binary Trees – LeetCode 617
Problem
Description
Given two binary trees and imagine that when you put one of them to cover the other, some nodes of the two trees are overlapped while the others are not.
You need to merge them into a new binary tree. The merge rule is that if two nodes overlap, then sum node values up as the new value of the merged node. Otherwise, the NOT null node will be used as the node of new tree.
Answer
Original
Code
1 | /** |
思路
简单的利用t1树整合保存结果。时间复杂度$O(n)$,空间复杂度$O(1)$。
耗时$28$ ms,排名$14.80\%$
Better
思路
还没看到更好的思路