/**
 * 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整型
     */
    int Find(TreeNode *proot){
        if(proot==nullptr){
            return 0;
        }
        int t=1;
        t+=(Find(proot->left)+Find(proot->right));
        return t;
    }
    int KthNode(TreeNode* proot, int k) {
        if(proot==nullptr){
            return -1;
        }
        if(Find(proot)<k){
            return -1;
        }
        int f=Find(proot->left);
        if(f>=k){
            return KthNode(proot->left,k);
        }
        else if(f+1==k){
            return proot->val;
        }
        else{
            return KthNode(proot->right, k-f-1);
        }
    }
};