题解 | #二叉搜索树的第k个节点#
二叉搜索树的第k个节点
http://www.nowcoder.com/practice/57aa0bab91884a10b5136ca2c087f8ff
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* };
*/
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param proot TreeNode类
* @param k int整型
* @return int整型
*/
vector<int> nodes;
void inorder(TreeNode* proot) {
if (proot == nullptr) {
return;
}
inorder(proot->left);
nodes.push_back(proot->val);
inorder(proot->right);
}
int KthNode(TreeNode* proot, int k) {
// write code here
inorder(proot);
if (k>nodes.size() || k <= 0) {
return -1;
} else {
return nodes[k-1];
}
}
};