作者:
Rushia (みけねこ的鼻屎)
2023-10-24 15:02:38https://leetcode.com/problems/find-largest-value-in-each-tree-row
515. Find Largest Value in Each Tree Row
給你一個二元樹,找出每一個 level 最大的元素列表。
Example 1:
https://assets.leetcode.com/uploads/2020/08/21/largest_e1.jpg
Input: root = [1,3,2,5,3,null,9]
Output: [1,3,9]
Example 2:
Input: root = [1,2,3]
Output: [1,3]
思路:
1.普通 BFS 遍歷,並記錄每一層最大的元素加入列表即可。
Java Code: