【剑指offer】二叉搜索树的第k个结点

二叉搜索树的第k个结点

https://www.nowcoder.com/practice/ef068f602dde4d28aab2b210e859150a?tpId=13&tqId=11215&tPage=4&rp=4&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking

/*
struct TreeNode {
    int val;
    struct TreeNode *left;
    struct TreeNode *right;
    TreeNode(int x) :
            val(x), left(NULL), right(NULL) {
    }
};
*/
class Solution {
public:
    TreeNode* KthNode(TreeNode* pRoot, int k)
    {
        /*
          中序遍历递归写法
          void InOrder(TreeNode* Root, TreeNode* &res){
              if(!res) return;
              if(Root){
                  InOrder(Root->left);
                  count--;
                  if(count == 0) res = Root;
                  InOrder(Root->right);
              }
          }
        */
        //中序遍历非递归写法
        if(!pRoot || k < 1) return NULL;
        stack<TreeNode*> s;
        TreeNode* Node = pRoot;
        int count = 0;
        while(Node != NULL || !s.empty()){
            if(Node != NULL){
                s.push(Node);
                Node = Node->left;
            }else{
                Node = s.top();
                s.pop();
                count++;
                if(count == k)
                    return Node;
                Node = Node->right;
            }
        }
        return NULL;
    }


};
全部评论

相关推荐

2024-12-18 14:13
蚌埠坦克学院 golang
苏州科技大学:面试官:接个面试,对面同学是个杀软二次元
点赞 评论 收藏
分享
贺兰星辰:不要漏个人信息,除了简历模板不太好以外你这个个人简介是不是太夸大了...
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务