leetcode[617] Merge Two Binary Trees Python3实现
1 | # Given two binary trees and imagine that when you put one of them to cover the |
第一反应是用两个队列同步bfs,写了一半放弃了…因为对Python3语法太不熟练了,需要补一补先。
参考官方题解,使用先序遍历(中-左-右),最终返回t1即可。
1 | # Given two binary trees and imagine that when you put one of them to cover the |
第一反应是用两个队列同步bfs,写了一半放弃了…因为对Python3语法太不熟练了,需要补一补先。
参考官方题解,使用先序遍历(中-左-右),最终返回t1即可。