515 Find Largest Value in Each Tree Row
You need to find the largest value in each row of a binary tree.
Example:
|
|
思路
这一题可以简单地采用层次遍历的方法。在层次遍历的队列当中加入空元素的方法,来分隔每一层。
|
|
这个解法就比较厉害了:https://discuss.leetcode.com/topic/78991/python-bfs/3
You need to find the largest value in each row of a binary tree.
Example:
|
|
这一题可以简单地采用层次遍历的方法。在层次遍历的队列当中加入空元素的方法,来分隔每一层。
|
|
这个解法就比较厉害了:https://discuss.leetcode.com/topic/78991/python-bfs/3