-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathkth_smallest_element_in_a_bst.rb
49 lines (41 loc) · 1.14 KB
/
kth_smallest_element_in_a_bst.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# https://leetcode.com/problems/kth-smallest-element-in-a-bst/
#
# 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?
#
# Credits:
#
# Special thanks to @ts for adding this problem and creating all test
# cases.
# Definition for a binary tree node.
# class TreeNode
# attr_accessor :val, :left, :right
# def initialize(val)
# @val = val
# @left, @right = nil, nil
# end
# end
# @param {TreeNode} root
# @param {Integer} k
# @return {Integer}
def kth_smallest(root, k)
_kth_smallest_(root, k, 0)[1]
end
private def _kth_smallest_(root, kth, count)
return [count, nil] if root.nil?
count, value = _kth_smallest_(root.left, kth, count)
return [count, value] if count == kth
count, value = count + 1, root.val
return [count, value] if count == kth
return _kth_smallest_(root.right, kth, count)
end