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

(LeetCode)杨辉三角形Pascal's Triangle

时间:2015-07-31 13:05:56      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:java   leetcode   

题目如下:

Given numRows, generate the first numRows of Pascal‘s triangle.

For example, given numRows = 5,
Return

[
     [1],
    [1,1],
   [1,2,1],
  [1,3,3,1],
 [1,4,6,4,1]
]
实现代码如下:

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


版权声明:本文为博主原创文章,未经博主允许不得转载。

(LeetCode)杨辉三角形Pascal's Triangle

标签:java   leetcode   

原文地址:http://blog.csdn.net/snchenjt/article/details/47167441

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