-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathKthSmallestInBST.cpp
More file actions
37 lines (30 loc) · 867 Bytes
/
KthSmallestInBST.cpp
File metadata and controls
37 lines (30 loc) · 867 Bytes
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
// https://leetcode.com/problems/kth-smallest-element-in-a-bst/description/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
int solve(TreeNode* root, int k, int &i) {
if(root==NULL)
return -1;
int left= solve(root->left, k, i);
if(left!=-1)
return left;
i++;
if(i==k)
return root->val;
return solve(root->right, k, i);
}
int kthSmallest(TreeNode* root, int k) {
int i= 0;
return solve(root, k, i);
}
};