一、前言
本系列文章为《剑指Offer》刷题笔记。
刷题平台:牛客网
书籍下载:共享资源
二、题目
输入一颗二叉树和一个整数,打印出二叉树中结点值的和为输入整数的所有路径。路径定义为从树的根结点开始往下一直到叶结点所经过的结点形成一条路径。
1、思路
深度优先搜索。使用前序遍历,使用两个全局变量result和tmp,result来存放最终结果,tmp用来存放临时结果。
每次遍历,我们先把root的值压入tmp,然后判断当前root是否同时满足:
- 与给定数值相减为0;
- 左子树为空;
- 右子树为空。
如果满足条件,就将tmp压入result中,否则,依次遍历左右子树。需要注意的是,遍历左右子树的时候,全局变量tmp是不清空的,直到到了根结点才请空tmp。
2、代码
C++:
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) { } };*/ class Solution { public: vector<vector<int> > FindPath(TreeNode* root,int expectNumber){ if(root == NULL){ return result; } tmp.push_back(root->val); if((expectNumber - root->val ) == 0 && root->left == NULL && root->right == NULL){ result.push_back(tmp); } //遍历左子树 FindPath(root->left, expectNumber - root->val); //遍历右子树 FindPath(root->right, expectNumber - root->val); tmp.pop_back(); return result; } private: vector<vector<int> > result; vector<int> tmp; };
Python:
# -*- coding:utf-8 -*- # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution: # 返回二维列表,内部每个列表表示找到的路径 def FindPath(self, root, expectNumber): # write code here if not root: return [] if not root.left and not root.right and expectNumber == root.val: return [[root.val]] res = [] left = self.FindPath(root.left, expectNumber-root.val) right = self.FindPath(root.right, expectNumber-root.val) for i in left+right: res.append([root.val]+i) return res
感谢@小小毛的本地测试用例:
class TreeNode: def __init__(self, x): self.val = x self.left = None self.right = None class Solution: # 返回二维列表,内部每个列表表示找到的路径 def FindPath(self, root, expectNumber): # write code here if not root: return [] if not root.left and not root.right and expectNumber == root.val: return [[root.val]] res = [] left = self.FindPath(root.left, expectNumber-root.val) right = self.FindPath(root.right, expectNumber-root.val) for i in left+right: res.append([root.val]+i) return res if __name__=='__main__': A1 = TreeNode(1) A2 = TreeNode(2) A3 = TreeNode(3) A4 = TreeNode(4) A5 = TreeNode(5) A6 = TreeNode(6) A1.left=A2 A1.right=A3 A2.left=A4 A2.right=A5 A4.left=A6 solution=Solution() ans=solution.FindPath(A1,8) print('ans=',ans)
来源:
https://cuijiahua.com/blog/2017/12/basis_24.html