leetcode 129. 求根到叶子节点数字之和

给定一个二叉树,它的每个结点都存放一个 0-9 的数字,每条从根到叶子节点的路径都代表一个数字。

例如,从根到叶子节点路径 1->2->3 代表数字 123

计算从根到叶子节点生成的所有数字之和。

说明: 叶子节点是指没有子节点的节点。

示例 1:

输入: [1,2,3]
    1
   /   2   3
输出: 25
解释:
从根到叶子节点路径 1->2 代表数字 12.
从根到叶子节点路径 1->3 代表数字 13.
因此,数字总和 = 12 + 13 = 25.

示例 2:

输入: [4,9,0,5,1]
    4
   /   9   0
 / 5   1
输出: 1026
解释:
从根到叶子节点路径 4->9->5 代表数字 495.
从根到叶子节点路径 4->9->1 代表数字 491.
从根到叶子节点路径 4->0 代表数字 40.
因此,数字总和 = 495 + 491 + 40 = 1026.

思路:
  • 通过压栈的方式访问树的每一条路径,每压进一个结点,就把结点的值加到t中
  • 用布尔量fl,fr来表示左右结点是否访问
  • 用sum来储存所有路径的值,t用来表示每一条路径的值
  • 当访问到叶子结点时候:
  • 当fl和fr均为true的时候,表示该节点的两个子结点都已经遍历了,将其弹出,且把t值除以10
  • 当fl和fr只有一个为false的时候,表示一条路径到底,把t值加到sum中,t值除以10,fr或者fl置反

为什么要除以10呢? 因为当前的值弹出,位数减少以为,等价于出去最低位,所以除以10

 1 /**
 2  * Definition for a binary tree node.
 3  * struct TreeNode {
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 8  * };
 9  */
10 #include<stack>
11 #include<vector>
12 class Solution {
13 public:
14     vector<int> s;
15     vector<TreeNode*> v;
16     int sumNumbers(TreeNode* root) {
17         if(root == NULL) return 0;
18         int sum = 0, t = root->val;
19         stack<TreeNode*> s;
20         s.push(root);
21         if(root->left==NULL && root->right==NULL)return t;
22         bool fl = true, fr = true;
23         while(!s.empty()){
24             TreeNode* temp = s.top();
25             if(temp == NULL) break;
26             if(temp->left) {//遍历每一条路径
27                 s.push(temp->left);
28                 t = t*10 + temp->left->val;
29                 temp->left = NULL;
30                 fl = false;
31                 fr = true;
32             }else if(temp->right){
33                 s.push(temp->right);
34                 t = t*10 + temp->right->val;
35                 temp->right = NULL;
36                 fl = true;
37                 fr = false;
38             }else{//遍历完一条完整的路径
39                 if(!fl){
40                     sum += t;
41                     t /= 10;
42                     fl = true;
43                 }
44                 else if(!fr){
45                     sum += t;
46                     t /= 10;
47                     fr = true;
48                 }
49                 else if(fl&&fr){
50                     t/=10;
51                 }
52                 s.pop();
53             }
54         }
55         return sum;
56     }
57 };

原文地址:https://www.cnblogs.com/mr-stn/p/8969866.html

时间: 2024-10-25 17:00:00

leetcode 129. 求根到叶子节点数字之和的相关文章

LeetCode 129. 求根到叶子节点数字之和(Sum Root to Leaf Numbers)

题目描述 给定一个二叉树,它的每个结点都存放一个 0-9 的数字,每条从根到叶子节点的路径都代表一个数字. 例如,从根到叶子节点路径 1->2->3 代表数字 123. 计算从根到叶子节点生成的所有数字之和. 说明: 叶子节点是指没有子节点的节点. 示例 1: 输入: [1,2,3] 1 / 2 3 输出: 25 解释: 从根到叶子节点路径 1->2 代表数字 12. 从根到叶子节点路径 1->3 代表数字 13. 因此,数字总和 = 12 + 13 = 25. 示例 2: 输入:

129. 求根到叶子节点数字之和

1 /** 2 * Definition for a binary tree node. 3 * struct TreeNode { 4 * int val; 5 * TreeNode *left; 6 * TreeNode *right; 7 * TreeNode(int x) : val(x), left(NULL), right(NULL) {} 8 * }; 9 */ 10 class Solution 11 { 12 public: 13 int helper(TreeNode* ro

求根到叶子节点数字之和

给定一个二叉树,它的每个结点都存放一个 0-9 的数字,每条从根到叶子节点的路径都代表一个数字. 例如,从根到叶子节点路径 1->2->3 代表数字 123. 计算从根到叶子节点生成的所有数字之和. 说明: 叶子节点是指没有子节点的节点. 示例 1: 输入: [1,2,3] 1 / \ 2 3输出: 25解释:从根到叶子节点路径 1->2 代表数字 12.从根到叶子节点路径 1->3 代表数字 13.因此,数字总和 = 12 + 13 = 25.示例 2: 输入: [4,9,0,5

[LeetCode] Sum Root to Leaf Numbers 求根到叶节点数字之和

Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number. An example is the root-to-leaf path 1->2->3 which represents the number 123. Find the total sum of all root-to-leaf numbers. For example, 1 / 2 3 T

[LeetCode] 129 Sum Root to Leaf Numbers 求根到叶节点数字之和

此题题意是求所有从根结点到叶节点的路径转化为数字后之和. 因为是二叉树,容易想到是用递归求解. 整体思想是从根到叶子进行遍历,其中不断保存当前的中间结果(上一层的结果乘以10后加上当前层根节点的数值)并通过参数向下传递... 到达叶子节点时可以逐层返回最终结果.解法不难,但有几个细节需要考虑清楚. 1)可以用递归函数dfs的参数表内置的返回和来返回数值,也可以直接用dfs返回值,对应于以下两种定义: void dfs(TreeNode *root, int &sum, int pre); int

LeetCode OJ:Sum Root to Leaf Numbers(根到叶节点数字之和)

Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number. An example is the root-to-leaf path 1->2->3 which represents the number 123. Find the total sum of all root-to-leaf numbers. For example, 1 / 2 3 T

树——sum-root-to-leaf-numbers(根到叶节点数字之和)

问题: Given a binary tree containing digits from0-9only, each root-to-leaf path could represent a number. An example is the root-to-leaf path1->2->3which represents the number123. Find the total sum of all root-to-leaf numbers. For example, 1 / 2 3 Th

求二叉树中叶子节点的个数

求二叉树中叶子节点的个数 面试题二叉树 题目描述 求二叉树中叶子节点的个数. 叶子节点的定义:如果一个节点既没有左孩子,也没有右孩子,则该节点为叶子节点. 示例: 3 / 9 20 / 15 7 在这个二叉树中,叶子节点有 9,15,7,所以返回 3. Java 实现 class TreeNode { int val; TreeNode left; TreeNode right; TreeNode(int x) { val = x; } } class Solution { public int

C++算法之 求二叉树中叶子节点的个数 与 判断两棵二叉树是否结构相同

//叶子节点的个数 /* (1)如果二叉树为空,返回0 (2)如果二叉树不为空且左右子树为空,返回1 (3)如果二叉树不为空,且左右子树不同时为空,返回左子树中叶子节点个数加上右子树中叶子节点个数 */ int GetLeafNodeNum(BTree* root) { if(root == NULL) return 0; if(root->m_pLeft == NULL && root->m_pRight == NULL) return 1; int LeafNumOfLef