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
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@
6
6
7
7
| Current Status| Stats |
8
8
| :------------: | :----------: |
9
-
| Total Problems |141|
10
-
| Current Streak |5 days |
9
+
| Total Problems |142|
10
+
| Current Streak |6 days |
11
11
| Longest Streak | 91 ( August 17, 2015 - November 15, 2015 ) |
12
12
13
13
</center>
@@ -124,6 +124,7 @@ Include contains single header implementation of data structures and some algori
124
124
| Given a binary tree, find all the paths from root to nodes, whose sum is k. |[k_sum_paths.cpp](tree_problems/k_sum_paths.cpp)|
125
125
| Given a binary tree, print its nodes level by level in reverse order. i.e. all nodes present at last level should be printed first followed by nodes of second-last level and so on.. All nodes for any level should be printed from left to right. |[reverseLevelOrderTraversal.cpp](tree_problems/reverseLevelOrderTraversal.cpp)|
126
126
| Invert a binary tree, recursively and iteratively.|[invert_a_tree.cpp](tree_problems/invert_a_tree.cpp)|
127
+
| 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)|
0 commit comments