-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkthSmallest.cpp
53 lines (46 loc) · 1.44 KB
/
kthSmallest.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
53
// https://leetcode.com/problems/kth-smallest-element-in-a-bst/
/*
Note:
You may assume k is always valid, 1 ≤ k ≤ BST's total elements.
Follow up:
What if the BST is modified (insert/delete operations) often and you need to find the kth smallest frequently? How would you optimize the kthSmallest routine?
Hint:
Try to utilize the property of a BST.
What if you could modify the BST node's structure?
The optimal runtime complexity is O(height of BST).
Credits:
Special thanks to @ts for adding this problem and creating all test cases.
*/
/**
* 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:
vector<int> inorderTraversal(TreeNode* root) {
stack<TreeNode *> stree;
vector<int> vi;
if(root==nullptr)
return vi;
while(true){
for(; root; root=root->left)
stree.push(root);
if(stree.empty())
break;
root=stree.top();
stree.pop();
vi.push_back(root->val);
root = root->right;
}
return vi;
}
int kthSmallest(TreeNode* root, int k) {
auto vi=inorderTraversal(root);
return vi[k-1];
}
};