Pascal's Triangle (LeetCode) 帕斯卡三角或者叫杨辉三角----动态规划和memoization

Given a non-negative integer numRows, generate the first numRows of Pascal's triangle.


In Pascal's triangle, each number is the sum of the two numbers directly above it.

Example:

Input: 5
Output:
[
     [1],
    [1,1],
   [1,2,1],
  [1,3,3,1],
 [1,4,6,4,1]
]

取巧的解法:

class Solution {
    public List<List<Integer>> generate(int numRows) {
        List<List<Integer>> result = new LinkedList();
        if(numRows <= 0) return result;
        List<Integer> row = new ArrayList();
        for(int i = 0; i < numRows; i++) {
            row.add(0, 1);
            for(int j = 1; j < row.size() - 1; j++) {
                //java没有这样的操作
                //row.get(j) = row.get(j) + row.get(j+1);
                row.set(j, row.get(j)+row.get(j+1));
            }
            result.add(new ArrayList(row));
        }
        return result;
    }
}

上面的解法有一个问题是:row.add(0, 1)的时候,都会对row中所有的元素移动,这样做效率很低。

class Solution {
    public List<List<Integer>> generate(int numRows) {
        List<List<Integer>> result = new LinkedList();
        if(numRows <= 0) return result;
        List<Integer> row = new ArrayList();
        for(int i = 0; i < numRows; i++) {
            row.add(1);
            for(int j = i-1; j > 0; j--) {
                row.set(j, row.get(j)+row.get(j-1));
            }
            result.add(new ArrayList(row));
        }
        return result;
    }
}

问题说明:

我们仔细研究上面的算法就会发现,在计算过程中是用到了memoization 优化计算的,中间计算结果进行存储,不需要重复计算。

这个帕斯卡三角问题,还有两个变形题

(1)某一行的所有值 Pascal's Triangle II(LeetCode)

class Solution {
    public List<Integer> getRow(int rowIndex) {
        List<Integer> row = new ArrayList();
        for(int i = 0; i <= rowIndex; i++) {
            row.add(1);
            for(int j = i-1; j > 0; j--) {
                row.set(j, row.get(j)+row.get(j-1));
            }
        }
        return row;
    }
}

(2)某一行某一列的值。这道题很容易想到用递归的方式来做,不过会遇到重复计算中间结果值的问题。不过,这是有解决办法的。核心思想还是采用memoization优化技术

这道题和斐波那契数列求某个位置的值是一类型的题

top-down

    public int getValue(int rowIndex, int colIndex) {
        List<Integer> row = new ArrayList();
        for(int i = 0; i <= rowIndex; i++) {
            row.add(1);
            for(int j = i-1; j > 0; j--) {
                row.set(j, row.get(j)+row.get(j-1));
            }
        }
        return row.get(colIndex);
    }

bottom-up: 以后有机会写

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值