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
Display the source diff
Display the rich diff
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 |137|
10
-
| Current Streak |1 days |
9
+
| Total Problems |138|
10
+
| Current Streak |2 days |
11
11
| Longest Streak | 91 ( August 17, 2015 - November 15, 2015 ) |
12
12
13
13
</center>
@@ -120,6 +120,7 @@ Include contains single header implementation of data structures and some algori
120
120
| Given a binary tree and key, node with key exists in tree. Find all the ancestors of the node with key, ancestor here are the nodes which are in straight path from node to root.|[node_ancestors_in_root_path.cpp](tree_problems/node_ancestors_in_root_path.cpp)|
121
121
| Given a binary tree and key, return the level of the node with key. Root is at level 1, and if node with key does not exists in tree, return 0|[level_of_node.cpp](tree_problems/level_of_node.cpp)|
122
122
| 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)|
123
+
| 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)|
0 commit comments