/**
 * struct TreeNode {
 *    int val;
 *    struct TreeNode *left;
 *    struct TreeNode *right;
 *    TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 * };
 */
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param root TreeNode类 
     * @param sum int整型 
     * @return int整型
     */
    int res=0;
    //该递归函数的含义为,从root节点出发前序遍历该树
    void dfs(TreeNode* root,int sum){
        sum-=root->val;
        if(sum==0){//说明找到了一个路径
            res++;//注意这里不能return
        }
        if(root->left){
            dfs(root->left, sum);
        }
        if(root->right){
            dfs(root->right, sum);
        }
        return;
    }
    int FindPath(TreeNode* root, int sum) {
        // write code here
        if(root==NULL){
            return 0;
        }
        //层序遍历二叉树,从二叉树的每一个节点出发调用dfs
        queue<TreeNode*> que;
        que.push(root);
        while(!que.empty()){
            TreeNode* tmp=que.front();
            que.pop();
            if(tmp->left){
                que.push(tmp->left);
            }
            if(tmp->right){
                que.push(tmp->right);
            }
            dfs(tmp, sum);
        }
        return res;
    }
};