当前位置: 代码迷 >> 综合 >> [LeetCode 230] Kth Smallest Element in a BST
  详细解决方案

[LeetCode 230] Kth Smallest Element in a BST

热度:82   发布时间:2024-01-04 07:36:47.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);}}
}



  相关解决方案