原文:[LeetCode] Sum of Left Leaves 左子葉之和

Find the sum of all left leaves in a given binary tree. Example: 這道題讓我們求一棵二叉樹的所有左子葉的和,那么看到這道題我們知道這肯定是考二叉樹的遍歷問題,那么最簡潔的寫法肯定是用遞歸,由於我們只需要累加左子葉之和,那么我們在進入遞歸函數的時候需要知道當前結點是否是左子節點,如果是左子節點,而且該左子節點再沒有子節點了說明其是左子 ...

2016-09-30 13:40 1 7986 推薦指數:

查看詳情

leetcode】1302. Deepest Leaves Sum

題目如下: Given a binary tree, return the sum of values of its deepest leaves. Example 1: Constraints: The number of nodes ...

Sun Dec 29 16:58:00 CST 2019 0 224
LeetCode 15. 三數之和(3Sum

題目描述 給定一個包含 n 個整數的數組 nums,判斷 nums 中是否存在三個元素 a,b,c ,使得 a + b + c = 0 ?找出所有滿足條件且不重復的三元組。 注 ...

Fri May 04 19:25:00 CST 2018 1 7433
[LeetCode] Map Sum Pairs 映射配對之和

Implement a MapSum class with insert, and sum methods. For the method insert, you'll be given a pair of (string, integer). The string ...

Sun Oct 01 07:54:00 CST 2017 3 2781
[LeetCode]21. 3Sum三者之和

Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum ...

Tue Oct 13 04:12:00 CST 2015 0 6050
LeetCode OJ:Three Sum(三數之和

Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum ...

Tue Oct 06 05:12:00 CST 2015 0 3952
 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM