首页 > 其他 > 详细

[LeetCode 230] Kth Smallest Element in a BST

时间:2015-09-18 13:54:08      阅读:194      评论:0      收藏:0      [点我收藏+]

Given a binary search tree, write a function kthSmallest to 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?

Hint:

  1. Try to utilize the property of a BST.
  2. What if you could modify the BST node‘s structure?
  3. The optimal runtime complexity is O(height of BST).

solution:

Inorder traverse, get kth element from that result. complexity is O(n)

public class Solution {
    List<Integer> path = new ArrayList<>();
    public int kthSmallest(TreeNode root, int k) {
        inorder(root);
        return path.get(k-1);
    }
    public void inorder(TreeNode root) {
        if(root != null){
            inorder(root.left);
            path.add(root.val);
            inorder(root.right);
        }
    }
}



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

[LeetCode 230] Kth Smallest Element in a BST

原文:http://blog.csdn.net/sbitswc/article/details/48544731

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