/**
 * 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 KthNode(TreeNode* proot, int k) {
        // write code here
        //由于二叉搜索树有着很好的中序遍历性质,即遍历出来的序列为有小到大排列
        if(k==0)
            return -1;
        stack<TreeNode*> Stack;
        TreeNode* bt=proot;
        int count=1;
        while(bt!=NULL||!Stack.empty())
        {
            while(bt!=NULL)
            {
                Stack.push(bt);
                bt=bt->left;
            }
            if(!Stack.empty())
            {
                bt=Stack.top();
                Stack.pop();
                if(count==k)
                {
                    return bt->val;
                }
                count++;
                bt=bt->right;
            }
        }
        return -1;
    }
};