力扣刷题记录47.1-----404. 左叶子之和

目录

  • 一、题目
  • 二、代码
  • 三、运行结果


一、题目

力扣刷题记录47.1-----404. 左叶子之和_第1张图片

二、代码

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
 *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
 * };
 */
class Solution {
public:
    //递归三要素
    //第一:参数和返回值
    //第二:终止条件
    //第三:每一层的逻辑
    void recursive(TreeNode* cur,int& result,int temp_flag)
    {


       if(cur==nullptr) return;

       //带筛选的中序遍历    
       if(temp_flag==1&&cur->left==nullptr&&cur->right==nullptr)  result=result+cur->val;

       recursive(cur->left,result,1);
       recursive(cur->right,result,0);

    }
    int sumOfLeftLeaves(TreeNode* root) 
    {
        int result=0;

        recursive(root,result,0);
        return result;
    }
};

三、运行结果

力扣刷题记录47.1-----404. 左叶子之和_第2张图片

你可能感兴趣的:(#,leetcode,算法,c++)