Skip to content

I wrote a python code which finds smallest summation of numbers in triangle with dynamic programming algorithm.

License

Notifications You must be signed in to change notification settings

bbkelleroglu/DynamicProgramming-SmallestSumTriangle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Minimum Sum Path in a Triangle

I designed a dynamic programming algorithm and implemented it with Python to find the smallest sum in a descent from the triangle apex to its base through a sequence of adjacent numbers in an equilateral triangle with n numbers in its base.

In the below example, n is 4 and smallest sum path is shown in circles.

Screen Shot 2019-05-15 at 20 46 44

General approach for this kind of problem is to start at the bottom and work your way up. Therefore, i took the bottom row and adding each number to the row.

Sample Execution: For tree : [2] [5, 4] [1, 4, 7] [8, 6, 9, 6]

Smallest sum : 14

or

For tree: [2] [5, 4] [7, 4, 1] [8, 2, 9, 6] [11, 3, 8, 8, 6] Smallest sum : 15

Have fun :)

About

I wrote a python code which finds smallest summation of numbers in triangle with dynamic programming algorithm.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages