【Leetcode】366. Find Leaves of Binary Tree


1 使用dic来做,每一个level给一个level index值,从下往上index逐渐增大

2 在dfs从上到下的遍历中,就把每一个node的node.val存到对应的dic中去了

3 那种全局变量,要么写成self.形式,要么做为参数带进去



你可能感兴趣的:(【Leetcode】366. Find Leaves of Binary Tree)