-
Notifications
You must be signed in to change notification settings - Fork 0
/
kth_smallest_in_bst.cpp
52 lines (47 loc) · 1.23 KB
/
kth_smallest_in_bst.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
/*
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) {
vector<int> ret;
vector<TreeNode *> stack;
TreeNode *current=root;
int top=-1;
while(current!=NULL)
{
stack.push_back(current);
top++;
if(current->left==NULL)
{
//ret.push_back(current->val);
while(top>=0)
{
current = stack[top];
top--;
stack.pop_back();
ret.push_back(current->val);
if(current->right != NULL)
{
break;
}
}
current=current->right;
continue;
}
current=current->left;
}
return ret[k-1];
}
};