当前位置: 首页> 财经> 股票 > 怎么制作游戏脚本视频教程_如何推广自己产品_seo关键词优化软件官网_有了域名如何建立网站

怎么制作游戏脚本视频教程_如何推广自己产品_seo关键词优化软件官网_有了域名如何建立网站

时间:2025/7/10 9:42:26来源:https://blog.csdn.net/navicheung/article/details/142867704 浏览次数:0次
怎么制作游戏脚本视频教程_如何推广自己产品_seo关键词优化软件官网_有了域名如何建立网站

404. Sum of Left Leaves

Given the root of a binary tree, return the sum of all left leaves.

A leaf is a node with no children. A left leaf is a leaf that is the left child of another node.
 

Example 1:

在这里插入图片描述

Input: root = [3,9,20,null,null,15,7]
Output: 24
Explanation: There are two left leaves in the binary tree, with values 9 and 15 respectively.

Example 2:

Input: root = [1]
Output: 0

Constraints:
  • The number of nodes in the tree is in the range [1, 1000].
  • -1000 <= Node.val <= 1000

From: LeetCode
Link: 404. Sum of Left Leaves


Solution:

Ideas:

1. isLeaf: A helper function that checks if a node is a leaf (no left or right children).

2. sumOfLeftLeavesHelper: This is the main recursive function. It takes two arguments: the current node and a flag isLeft that indicates whether the node is a left child.

  • If the node is a leaf and isLeft is true, it returns the node’s value.
  • Otherwise, it recursively checks the left and right subtrees, summing the results.

3. sumOfLeftLeaves: This is the main function that starts the recursion, passing 0 as the initial isLeft flag (since the root is not a left child).

Code:
/*** Definition for a binary tree node.* struct TreeNode {*     int val;*     struct TreeNode *left;*     struct TreeNode *right;* };*/int isLeaf(struct TreeNode* node) {return (node != NULL && node->left == NULL && node->right == NULL);
}int sumOfLeftLeavesHelper(struct TreeNode* root, int isLeft) {if (root == NULL) return 0;if (isLeaf(root) && isLeft) {return root->val;}// Recurse on left and right childrenreturn sumOfLeftLeavesHelper(root->left, 1) + sumOfLeftLeavesHelper(root->right, 0);
}int sumOfLeftLeaves(struct TreeNode* root) {return sumOfLeftLeavesHelper(root, 0);
}
关键字:怎么制作游戏脚本视频教程_如何推广自己产品_seo关键词优化软件官网_有了域名如何建立网站

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: