-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path230.hpp
60 lines (51 loc) · 1.21 KB
/
230.hpp
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
53
54
55
56
57
58
59
60
#ifndef LEETCODE_230_HPP
#define LEETCODE_230_HPP
#include <iostream>
#include <queue>
#include <algorithm>
#include <vector>
#include <unordered_map>
#include <unordered_set>
#include <set>
#include <numeric>
#include <functional>
#include "../common/leetcode.hpp"
using namespace std;
/**
Given a binary search tree, write a function kthSmallest to find the kth smallest element in it.
Note:
You may assume k is always valid, 1 ? k ? BST's total elements.
*/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
int kthSmallest(TreeNode *root, int k) {
int res = 0;
preOrderDfs(root, [&](int v) -> bool {
if (--k == 0) {
res = v;
return true;
}
return false;
});
return res;
}
private:
void preOrderDfs(TreeNode *root, function<bool(int)> f) {
if (root != nullptr) {
preOrderDfs(root->left, f);
if (!f(root->val)) {
preOrderDfs(root->right, f);
}
}
}
};
#endif //LEETCODE_230_HPP