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 |174|
9
+
| Total Problems |175|
10
10
11
11
</center>
12
12
@@ -130,6 +130,7 @@ Include contains single header implementation of data structures and some algori
130
130
| Given a Binary Search Tree, find ceil and floor of a given key in it. If the given key lie in the BST, then both floor and ceil is equal to that key, else ceil is equal to next greater key (if any) in the BST and floor is equal to previous greater key (if any) in the BST |[floor_ceil_bst.cpp](tree_problems/floor_ceil_bst.cpp)|
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
+
| 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)|
0 commit comments