Problem
Given the root
of a binary search tree, and an integer k
, return the k^th
smallest value (1-indexed) of all the values of the nodes in the tree.
https://leetcode.com/problems/kth-smallest-element-in-a-bst/
Example 1:
Input:
root = [3,1,4,null,2], k = 1
Output:1
Example 2:
Input:
root = [5,3,6,2,4,null,null,1], k = 3
Output:3
Constraints:
- The number of nodes in the tree is
n
. 1 <= k <= n <= 10^4
0 <= Node.val <= 10^4
Follow up: If the BST is modified often (i.e., we can do insert and delete operations) and you need to find the kth smallest frequently, how would you optimize?
Test Cases
1 | # Definition for a binary tree node. |
1 | import pytest |
Thoughts
直接按照中序(in-order,LNR)遍历 BST 二叉树。访问到的第 k 个节点,其值就是第 k 小的数。
时间复杂度 O(n)
。虽然找到第 k 个节点就结束,但中序遍历的话,即便是找到值最小的节点,最坏情况也可能需要先路过所有的其他节点。
所以频繁增删的 BST,可能会变得不平衡导致需要花很长时间才能找到第 k 小的节点,可以对 BST 做平衡调节。
Code
1 | from typing import Optional |