题解 | #二叉搜索树的第k个节点#
二叉搜索树的第k个节点
https://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> path;
void inOrder(TreeNode* proot, int k){
if (proot == nullptr) {
return;
}
inOrder(proot -> left, k);
path.push_back(proot -> val);
inOrder(proot -> right, k);
}
int KthNode(TreeNode* proot, int k) {
if (k == 0){
return -1;
}
// write code here
inOrder(proot, k);
if (k > path.size()){
return -1;
}
return path[k - 1];
}
};
查看7道真题和解析