摘要: ##左叶子之和 class Solution { public int sumOfLeftLeaves(TreeNode root) { if(root==null) return 0; int result=0; if(root.left!=null&&root.left.left==null&& 阅读全文
posted @ 2022-02-04 09:00 一刹流云散 阅读(21) 评论(0) 推荐(0) 编辑