摘要: You need to find the largest value in each row of a binary tree. Example: 这道题让我们找二叉树每行的最大的结点值,那么实际上最直接的方法就是用层序遍历,然后在每一层中找到最大值,加入结果res中即可,参见代码如下: 解法一: 阅读全文
posted @ 2017-02-19 23:29 Grandyang 阅读(4934) 评论(0) 推荐(0) 编辑
Fork me on GitHub