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
+1-2
Original file line number
Diff line number
Diff line change
@@ -111,8 +111,7 @@ Include contains single header implementation of data structures and some algori
111
111
|Recursive Level order traveral of Tree |[levelOrderTraversalRecursive.cpp](tree_problems/levelOrderTraversalRecursive.cpp)|
112
112
|ZigZag Traversal of Tree |[zigZagTraversal.cpp](tree_problems/zigZagTraversal.cpp)|
113
113
|Predecessor and Successor of a given node in Binary Search Tree |[predecessorSuccessor.cpp](tree_problems/predecessorSuccessor.cpp)|
114
-
|Given values of two nodes in a Binary Search Tree, find the Lowest Common Ancestor (LCA). Assume that both the values exist in the tree.| [lowest-common-ancestor.cpp]
115
-
(tree_problems/lowest-common-ancestor.cpp)|
114
+
|Given values of two nodes in a Binary Search Tree, find the Lowest Common Ancestor (LCA). Assume that both the values exist in the tree.|[lowest-common-ancestor.cpp](tree_problems/lowest-common-ancestor.cpp)|
116
115
|Given a binary tree (unlike binary search tree), find the Lowest Common Ancestor (LCA).|[lowest-common-ancestor-binary-tree.cpp](tree_problems/lowest-common-ancestor-binary-tree.cpp)|
117
116
|Given a binary tree, print out all of its root-to-leaf paths one per line.| [printAllRootToLeafPath.cpp](tree_problems/printAllRootToLeafPath.cpp)
118
117
|Determine if a tree is sum tree. A SumTree is a Binary Tree where the value of a node is equal to sum of the nodes present in its left subtree and right subtree. An empty tree is SumTree and sum of an empty tree can be considered as 0. A leaf node is also considered as SumTree.|[sumTree.cpp](tree_problems/sumTree.cpp)|
0 commit comments