题解 | #二叉树中和为某一值的路径(一)#

二叉树中和为某一值的路径(一)

http://www.nowcoder.com/practice/508378c0823c423baa723ce448cbfd0c

/**

  • struct TreeNode {
  • int val;
  • struct TreeNode *left;
  • struct TreeNode *right;
  • }; */

class Solution { public: /** * * @param root TreeNode类 * @param sum int整型 * @return bool布尔型 / bool hasPathSum(TreeNode root, int sum) { if(!root) return false; vector path; if(!find(root,sum,path).empty()) return true; return false; } vector& find(TreeNode* root,int sum,vector& path){ path.push_back(root->val); if(sum == root->val && !root->left &&!root->right) return path; if(root->left) find(root->left,sum-root->val,path); if(root->right) find(root->right,sum-root->val,path); path.pop_back(); return path; } };

全部评论

相关推荐

点赞 评论 收藏
分享
人间雪:简历最好只要一页,除非你牛逼到一页都写不下了
点赞 评论 收藏
分享
投递OPPO等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务