You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
| Current Status| Stats |
8
8
| :------------: | :----------: |
9
-
| Total Problems |175|
9
+
| Total Problems |176|
10
10
11
11
</center>
12
12
@@ -131,6 +131,7 @@ Include contains single header implementation of data structures and some algori
131
131
| Find kth smallest element in a binary search tree |[kth_smallest.cpp](tree_problems/kth_smallest.cpp)|
132
132
| Validate if a given binary tree is a binary search tree. |[validate_bst.cpp](tree_problems/validate_bst.cpp)|
133
133
| Given a Binary Search Tree and a target number, return true if there exist two elements in the BST such that their sum is equal to the given target.|[find_target_k.cpp](tree_problems/find_target_k.cpp)|
134
+
| Given a non-empty binary search tree and a target value, find the value in the BST that is closest to the target. Also, to note that the target value is a floating point. There will be only one unique value which is closest to the target. |[closest_bst_value.cpp](tree_problems/closest_bst_value.cpp)|
0 commit comments