首页 > 其他 > 详细

Triangle

时间:2015-03-13 20:34:29      阅读:265      评论:0      收藏:0      [点我收藏+]

Triangle

问题:

Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.

思路:

  简单的动态规划问题

我的代码:

技术分享
public class Solution {
    public int minimumTotal(List<List<Integer>> triangle) {
        if(triangle == null || triangle.size() == 0)    return -1;
        int size = triangle.size();
        for(int i = size - 2; i >= 0; i--)
        {
            List<Integer> cur = triangle.get(i);
            List<Integer> pre = triangle.get(i+1);
            for(int j = 0; j < cur.size(); j++)
            {
                cur.set(j, cur.get(j) + Math.min(pre.get(j),pre.get(j+1)));
            }
        }
        return triangle.get(0).get(0);
    }
}
View Code

 

Triangle

原文:http://www.cnblogs.com/sunshisonghit/p/4335913.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!