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
Display the source diff
Display the rich diff
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 |173|
9
+
| Total Problems |174|
10
10
11
11
</center>
12
12
@@ -129,6 +129,7 @@ Include contains single header implementation of data structures and some algori
129
129
| Invert a binary tree, recursively and iteratively.|[invert_a_tree.cpp](tree_problems/invert_a_tree.cpp)|
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
+
| Validate if a given binary tree is a binary search tree. |[validate_bst.cpp](tree_problems/validate_bst.cpp)|
0 commit comments