博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
113. Path Sum II
阅读量:6302 次
发布时间:2019-06-22

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

Given a binary tree and a sum, find all root-to-leaf paths where each path’s sum equals the given sum.

For example:

Given the below binary tree and sum = 22,

5             / \            4   8           /   / \          11  13  4         /  \    / \        7    2  5   1

return

[   [5,4,11,2],   [5,8,4,5]]
/** * Definition for a binary tree node. * struct TreeNode { *     int val; *     TreeNode *left; *     TreeNode *right; *     TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solution {public:    void pathSum(TreeNode* root,int gap,vector
>& result,vector
cur){ if(!root) return; cur.push_back(root->val); if(!root->left&& !root->right) { if(root->val==gap) result.push_back(cur); } pathSum(root->left,gap-root->val,result,cur); pathSum(root->right,gap-root->val,result,cur); cur.pop_back(); } vector
> pathSum(TreeNode* root, int sum) { vector
> result; std::vector
cur; if(!root) return result; pathSum(root,sum,result,cur); return result; }};

转载于:https://www.cnblogs.com/CarryPotMan/p/5343679.html

你可能感兴趣的文章
ARM inlinehook小结
查看>>
wordpress admin https + nginx反向代理配置
查看>>
管理/var/spool/clientmqueue/下的大文件
查看>>
HTML学习笔记1—HTML基础
查看>>
mysql dba系统学习(20)mysql存储引擎MyISAM
查看>>
Win8转移应用商店的安装目录,用户目录
查看>>
centos 5.5 64 php imagick 模块错误处理记录
查看>>
apache中文url日志分析--php十六进制字符串转换
查看>>
Ansible--playbook介绍
查看>>
浅谈代理
查看>>
php创建桌面快捷方式实现方法
查看>>
基于jquery实现的超酷动画源码
查看>>
fl包下的TransitionManager的使用
查看>>
Factorialize a Number
查看>>
[USB-Blaster] Error (209040): Can't access JTAG chain
查看>>
TreeSet的用法
查看>>
防HTTP慢速攻击的nginx安全配置
查看>>
深入理解PHP内核(十四)类的成员变量及方法
查看>>
Spring Boot2.0+中,自定义配置类扩展springMVC的功能
查看>>
参与博客编辑器改版,我的礼物 感谢51cto
查看>>