首页 > 其他 > 详细

[LeetCode] Kth Smallest Element in a BST

时间:2015-07-26 15:50:15      阅读:187      评论:0      收藏:0      [点我收藏+]

Kth Smallest Element in a BST

Given a binary search tree, write a function kthSmallestto find the kth smallest element in it.

Note: 
You may assume k is always valid, 1 ≤ k ≤ BST‘s total elements.

Follow up:
What if the BST is modified (insert/delete operations) often and you need to find the kth smallest frequently? How would you optimize the kthSmallest routine?

解题思路:

这道题求的是二分查找树种第k大的数。二分查找树有一个特点,每个节点均大于左孩子树的所有节点,小于有孩子树的所有节点。

因此可以利用中序遍历的方法,扫描二分查找树,当扫描到第k个数时,停止继续扫描。

/**
 * 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 kthSmallest(TreeNode* root, int k) {
        int count = 0;
        int result = 0;
        inOrder(root, k, count, result);
        return result;
    }
    
    void inOrder(TreeNode* root, int k, int& count, int& result){
        if(root==NULL || count>=k){
            return;
        }
        inOrder(root->left, k, count, result);
        count++;
        if(count==k){
            result=root->val;
        }
        inOrder(root->right, k, count, result);
    }
};


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

[LeetCode] Kth Smallest Element in a BST

原文:http://blog.csdn.net/kangrydotnet/article/details/47067781

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!