Maximum Path Sum is an algorithm to find out a path such that sum of element(node) of that path is greater than any other path.
For example, let's we have a we a triangle as shown below.
3
7 4
2 4 6
8 5 9 3
In above triangle, find the maximum path which has ma...