• leetcode 120. 三角形最小路径和 JAVA


    题目:

    给定一个三角形,找出自顶向下的最小路径和。每一步只能移动到下一行中相邻的结点上。

    例如,给定三角形:

    [
         [2],
        [3,4],
       [6,5,7],
      [4,1,8,3]
    ]
    

    自顶向下的最小路径和为 11(即,2 + 3 + 5 + 1 = 11)。

    说明:

    如果你可以只使用 O(n) 的额外空间(n 为三角形的总行数)来解决这个问题,那么你的算法会很加分。

    思路:

    因为只使用O(n)的额外空间,所以选择从下往上遍历,并且最小值就是res[0].

    res[j] = triangle.get(i).get(j) + (res[j] < res[j + 1] ? res[j] : res[j + 1]);
    class Solution {
        public int minimumTotal(List<List<Integer>> triangle) {
            int[] res = new int[triangle.size()];
            for (int i = 0; i < triangle.size(); i++) {
                res[i] = triangle.get(triangle.size() - 1).get(i);
            }//将最后一行的值赋值给res[]
            for (int i = triangle.size() - 2; i >= 0; i--) { //从下往上遍历
                for (int j = 0; j <= i; j++) {
                    res[j] = triangle.get(i).get(j) + (res[j] < res[j + 1] ? res[j] : res[j + 1]);
                }
            }
            return res[0];
        }
    }
  • 相关阅读:
    链接唤醒IOSApp
    C#抽象属性
    c#结构体与类的区别
    广告学入门
    个性化推荐十大挑战[
    MapReduce 读取和操作HBase中的数据
    mysql sql命令大全
    从B 树、B+ 树、B* 树谈到R 树
    MapReduce操作HBase
    Meanshift,聚类算法
  • 原文地址:https://www.cnblogs.com/yanhowever/p/10754608.html
Copyright © 2020-2023  润新知