码迷,mamicode.com
首页 > 其他好文 > 详细

Pascal's Triangle I II

时间:2015-04-18 06:25:25      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

想清楚了,安排好细节不难

public class Solution {
    public ArrayList<ArrayList<Integer>> generate(int numRows) {
        ArrayList<ArrayList<Integer>> res = new ArrayList<ArrayList<Integer>>();
        if(numRows<=0) return res;
        ArrayList<Integer> tmp = new ArrayList<Integer>();
        tmp.add(1);
        res.add(tmp);
        for(int i=1;i<numRows;i++){ // current row to be added
            ArrayList<Integer> r = new ArrayList<Integer>();
            r.add(1);
            ArrayList<Integer> t = res.get(i-1);
            for(int j=1;j<i;j++){
                
                r.add(t.get(j)+t.get(j-1));                
            }
            r.add(1);
            res.add(r);
        }
        return res;
    }
}

 II

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

 

Pascal's Triangle I II

标签:

原文地址:http://www.cnblogs.com/jiajiaxingxing/p/4436547.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!