class Solution { public: void init_dfs(int cont,vector<vector<int> > &path,int &path_num,TreeNode* p,int expectNumber) { if (p==NULL) { return; } if (p->left == NULL && p->right == NULL) { if (p->val == expectNumber) { path.resize(path_num + 1); path[path_num].re...