博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode]129.Sum Root to Leaf Numbers
阅读量:7127 次
发布时间:2019-06-28

本文共 6705 字,大约阅读时间需要 22 分钟。

【题目】

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

The root-to-leaf path 1->2 represents the number 12.

The root-to-leaf path 1->3 represents the number 13.

Return the sum = 12 + 13 = 25.

【分析】

每到一个叶子节点就代表一条路径的结束,一个值的产生。累加每个值。

【代码】

/**********************************   日期:2014-12-30*   作者:SJF0115*   题目: 129.Sum Root to Leaf Numbers*   来源:https://oj.leetcode.com/problems/sum-root-to-leaf-numbers/*   结果:AC*   来源:LeetCode*   博客:*   时间复杂度:O(n)*   空间复杂度:O(logn)**********************************/#include 
#include
#include
using namespace std;// 二叉树节点struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {}};class Solution {public: int sumNumbers(TreeNode *root) { if(root == NULL){ return 0; }//if return SumNumbers(root,0); }private: int SumNumbers(TreeNode* node,int curSum){ if(node == NULL){ return 0; }//if curSum = curSum*10 + node->val; // 到达叶子节点返回该路径上的值 if(node->left == NULL && node->right == NULL){ return curSum; } // 左子树 int leftSum = SumNumbers(node->left,curSum); // 右子树 int rightSum = SumNumbers(node->right,curSum); return leftSum + rightSum; }};// 创建二叉树TreeNode* CreateTreeByLevel(vector
num){ int len = num.size(); if(len == 0){ return NULL; }//if queue
queue; int index = 0; // 创建根节点 TreeNode *root = new TreeNode(num[index++]); // 入队列 queue.push(root); TreeNode *p = NULL; while(!queue.empty() && index < len){ // 出队列 p = queue.front(); queue.pop(); // 左节点 if(index < len && num[index] != -1){ // 如果不空创建一个节点 TreeNode *leftNode = new TreeNode(num[index]); p->left = leftNode; queue.push(leftNode); } index++; // 右节点 if(index < len && num[index] != -1){ // 如果不空创建一个节点 TreeNode *rightNode = new TreeNode(num[index]); p->right = rightNode; queue.push(rightNode); } index++; }//while return root;}int main() { Solution solution; // -1代表NULL vector
num = {1,2,3,4,-1,-1,5}; TreeNode* root = CreateTreeByLevel(num); cout<
<

【思路二】

层次遍历

/*---------------------------------------*   日期:2015-05-08*   作者:SJF0115*   题目: 129.Sum Root to Leaf Numbers*   网址:https://leetcode.com/problems/sum-root-to-leaf-numbers/*   结果:AC*   来源:LeetCode*   博客:-----------------------------------------*/#include 
#include
#include
using namespace std;// 二叉树节点struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {}};class Solution {public: int sumNumbers(TreeNode* root) { if(root == nullptr){ return 0; }//if queue
nodeQueue; queue
sumQueue; nodeQueue.push(root); sumQueue.push(0); int curSum = 0; int totalSum = 0; TreeNode* node; // 层次遍历 while(!nodeQueue.empty()){ // 当前节点 node = nodeQueue.front(); nodeQueue.pop(); // 当前路径和 curSum = sumQueue.front(); sumQueue.pop(); curSum = curSum * 10 + node->val; // 左子结点 if(node->left){ nodeQueue.push(node->left); sumQueue.push(curSum); }//if // 右子结点 if(node->right){ nodeQueue.push(node->right); sumQueue.push(curSum); }//if // 叶子节点计算总和 if(node->left == nullptr && node->right == nullptr){ totalSum += curSum; }//if }//while return totalSum; }};

层次遍历,对与每个节点都要记住父节点的当前和。因为计算每个节点的当前和都会因父节点而不一样。

到达叶子节点代表一条路径的结束。这个当前和加入到总和中。

【思路三】

先序遍历的非递归版本

/*---------------------------------------*   日期:2015-05-08*   作者:SJF0115*   题目: 129.Sum Root to Leaf Numbers*   网址:https://leetcode.com/problems/sum-root-to-leaf-numbers/*   结果:AC*   来源:LeetCode*   博客:-----------------------------------------*/#include 
#include
#include
#include
using namespace std;// 二叉树节点struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {}};class Solution {public: int sumNumbers(TreeNode* root) { if(root == nullptr){ return 0; }//if stack
nodeStack; nodeStack.push(root); stack
sumStack; sumStack.push(0); TreeNode* node; int curSum = 0; int totalSum = 0; // 先序遍历 非递归 while(!nodeStack.empty()){ // 当前节点 node = nodeStack.top(); nodeStack.pop(); // 当前路径和 curSum = sumStack.top(); sumStack.pop(); curSum = curSum * 10 + node->val; // 右子节点 if(node->right){ nodeStack.push(node->right); sumStack.push(curSum); }//if // 左子结点 if(node->left){ nodeStack.push(node->left); sumStack.push(curSum); }//if // 叶子节点计算总和 if(node->left == nullptr && node->right == nullptr){ totalSum += curSum; }//if }//while return totalSum; }};

【温故】

/*---------------------------------------*   日期:2015-05-08*   作者:SJF0115*   题目: 129.Sum Root to Leaf Numbers*   网址:https://leetcode.com/problems/sum-root-to-leaf-numbers/*   结果:AC*   来源:LeetCode*   博客:-----------------------------------------*/#include 
#include
#include
using namespace std;// 二叉树节点struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {}};class Solution {public: int sumNumbers(TreeNode* root) { if(root == nullptr){ return 0; }//if int curSum = 0; int totalSum = 0; helper(root,curSum,totalSum); return totalSum; }private: void helper(TreeNode* root,int curSum,int &totalSum){ if(root == nullptr){ return; }//if // 先序遍历 curSum = curSum * 10 + root->val; // 在叶子节点处计算总和 if(root->left == nullptr && root->right == nullptr){ totalSum += curSum; return; }//if // 左子树 helper(root->left,curSum,totalSum); // 右子树 helper(root->right,curSum,totalSum); }};

你可能感兴趣的文章
无法打开物理文件mdf,操作系统错误 5:&quot;5(拒绝訪问。)&quot;
查看>>
Dynamic CRM 2013学习笔记(二十三)CRM JS智能提示(CRM 相关的方法、属性以及页面字段),及发布前调试...
查看>>
ecside使用笔记(1)
查看>>
eclipse+webservice开发实例
查看>>
js undefined易错分析
查看>>
程序员必须知道的几个Git代码托管平台(转)
查看>>
PHP 二维数组根据相同的值进行合并
查看>>
微信JS-SDK使用权限签名算法的服务端实现(.net版本)
查看>>
windows下ruby安装环境配置
查看>>
Wndows 主进程(Rundll32)已停止工作
查看>>
C#的百度地图开发(一)发起HTTP请求
查看>>
用12306购票所想到的(改善的地方)
查看>>
Java设计模式(1)工厂模式(Factory模式)
查看>>
硬盘惊魂记
查看>>
mysql函数
查看>>
php xls 导出乱码解决方案
查看>>
[Android Traffic] 让android应用在传输网络数据的时候更省电
查看>>
Eclipse中Maven插件配置
查看>>
对于GetBuffer() 与 ReleaseBuffer() 的一些分析
查看>>
FluentData,一个轻量级开源的.NET ORM数据持久化框架
查看>>