[LeetCode 230] Kth Smallest Element in a BST

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

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

相关文章:

你感兴趣的文章:

标签云: