I have a binary tree which nodes(and root) holds int vals, and it's leafs contain vals which represents prices. The node's int vals represents how many leafs in it's sub-tree can be taken in the calculation. I have to tell what is the biggest sum of prices I can get out of this tree.
I thought at first to get all of the leafs in linkedlist and then start to filter them by their parents values, but it doesn't seem to be the best solution.
any ideas?!
