摘要: 一、双递归 遍历二叉树的每一个节点,然后以该节点为dfs的搜索起点,判断累加和是否为给定值,进行计数 class Solution { public: int pathNumber = 0; int pathSum(TreeNode* root, int sum) { if (!root) retu 阅读全文
posted @ 2020-07-20 22:04 知道了呀~ 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 参考博客:https://www.cnblogs.com/zhangjinfu/articles/11274389.html 阅读全文
posted @ 2020-07-20 10:31 知道了呀~ 阅读(566) 评论(0) 推荐(0) 编辑