标签:
根据 arraylist 的size和level比较, 从而每层bst只放一个元素
public class Solution {
public List<Integer> rightSideView(TreeNode root) {
List<Integer> res = new ArrayList<Integer>();
view(root, res,0);
return res;
}
public void view (TreeNode root,List<Integer> res,int l ){
if(root == null) return ;
if(l == res.size())
res.add(root.val);
view(root.right,res,l+1);
view(root.left,res,l+1);
}
}
199. Binary Tree Right Side View
标签:
原文地址:http://www.cnblogs.com/xjw1993/p/5071825.html