/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) { } };*/ #include <cmath> #include <functional> class Solution { public: vector<vector<int>> FindPath(TreeNode* root,int expectNumber) { ...