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

Kth Smallest Element in a BST

时间:2015-07-12 17:27:38      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:c++   class      递归   遍历   

该题的思路很简单,就是对BST进行先序遍历,找到第k个数的时候返回。这里借助栈用迭代实现,递归的代码更简单,没有尝试。

class Solution {
public:
    int kthSmallest(TreeNode* root, int k) {
        stack<TreeNode *> cache;
        TreeNode *point = root;
        TreeNode *tmp;
        int i = 0;
//先序遍历
        while(point || !cache.empty()){
            while(point){
                cache.push(point);
                point = point -> left;
            }
            if(!cache.empty()){
                tmp = cache.top();
                i++;
                if(i == k)
                    return tmp -> val;
                cache.pop();
                point = tmp -> right;
            }
        }
    }
};



版权声明:本文为博主原创文章,未经博主允许不得转载。

Kth Smallest Element in a BST

标签:c++   class      递归   遍历   

原文地址:http://blog.csdn.net/ny_mg/article/details/46851163

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