forked from illuz/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAC_dfs_n.cpp
53 lines (46 loc) · 1.15 KB
/
AC_dfs_n.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* Author: illuz <iilluzen[at]gmail.com>
* File: AC_dfs_n.cpp
* Create Date: 2015-02-21 08:30:54
* Descripton: Depth-first search
*/
#include <bits/stdc++.h>
using namespace std;
const int N = 0;
// Definition for binary tree
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
class Solution {
private:
void dfs(TreeNode *root, int rest, vector<int> &path,
vector<vector<int> > &res) {
if (root == NULL)
return;
path.push_back(root->val);
rest -= root->val;
if (root->left == NULL && root->right == NULL) {
if (rest == 0)
res.push_back(path);
} else {
if (root->left)
dfs(root->left, rest, path, res);
if (root->right)
dfs(root->right, rest, path, res);
}
path.pop_back();
}
public:
vector<vector<int> > pathSum(TreeNode *root, int sum) {
vector<vector<int> > res;
vector<int> path;
dfs(root, sum, path, res);
return res;
}
};
int main() {
return 0;
}