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

LeetCode 230. Kth Smallest Element in a BST 动态演示

时间:2019-08-13 09:13:09      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:遍历   style   color   class   leetcode   二叉树   led   solution   void   

返回排序二叉树第K小的数

还是用先序遍历,记录index和K进行比较

 

class Solution {
public:
    void helper(TreeNode* node, int& idx, int k, int& res){
        if(res!=INT_MAX)
            return;
        
        if(!node)
            return;
        
        //a(node)
        //lk("root",node)
        //dsp
        
        helper(node->left, idx, k, res);
        
        if(idx==k){
            res=node->val;
            //dsp
        }
        ++idx;
        helper(node->right, idx, k, res);
    }
    
    int kthSmallest(TreeNode* root, int k) {
        int idx=1;
        int res=INT_MAX;        
        //ahd(root)
        //a(res)
        //a(k)
        //a(idx)
        helper(root, idx, k, res);                
        return res;
    }
};

 程序运行动态演示 http://simpledsp.com/FS/Html/lc230.html

LeetCode 230. Kth Smallest Element in a BST 动态演示

标签:遍历   style   color   class   leetcode   二叉树   led   solution   void   

原文地址:https://www.cnblogs.com/leetcoder/p/11343581.html

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