Print all possible nodes who's sum is equal to a particular number - Binary Tree
Anonymous User
225

Given a Binary tree (NOT BST), print all possible node values who's sum is equal to a particular number. You can assume all no's are positive. You just have to print the path.

It can be anywhere in the path. Also, it can go throught the root node also.

Comments (2)