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

Problem Pascal's Triangle

时间:2014-07-07 15:41:32      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   strong   for   

Problem Description:

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]
]

 

 

 Solution:
 1     public List<List<Integer>> generate(int numRows) {
 2 List<List<Integer>> triangle  = new ArrayList<List<Integer>>();
 3         for (int i = 0; i < numRows; i++) {
 4             List<Integer> row = new ArrayList<Integer>();
 5             for (int j = 0; j <= i; j++) {
 6                 if (j == 0 || j == i) {
 7                     row.add(1);
 8                 } else {
 9                     row.add(triangle.get(i-1).get(j-1) + triangle.get(i-1).get(j));
10                 }
11             }
12 
13             triangle.add(row);
14         }
15 
16         return triangle;
17     }

 

Problem Pascal's Triangle,布布扣,bubuko.com

Problem Pascal's Triangle

标签:des   style   blog   color   strong   for   

原文地址:http://www.cnblogs.com/liew/p/3815139.html

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