码迷,mamicode.com
首页 > 其他好文 > 详细

leecode第二百三十题(二叉搜索树中第K小的元素)

时间:2019-04-17 12:21:40      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:struct   tree node   alt   style   void   time   ==   nod   val   

技术图片

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    int k_time;
    int temp;
    void kth_min(TreeNode* root)
    {
        if(root->left!=NULL)//不停找左节点
            kth_min(root->left);
        
        if(k_time>0)//查看k减少到0没
            k_time--;
        else 
            return;
        if(k_time==0)//如果为0,把当前节点赋给temp
            temp=root->val;
        
        if(root->right!=NULL)
            kth_min(root->right);
    }
    
    int kthSmallest(TreeNode* root, int k) {
        k_time=k;
        kth_min(root);
        return temp;
        
    }
};

分析:

中序进行一半,找到k值就返回。

leecode第二百三十题(二叉搜索树中第K小的元素)

标签:struct   tree node   alt   style   void   time   ==   nod   val   

原文地址:https://www.cnblogs.com/CJT-blog/p/10722640.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!