Chinaunix首页 | 论坛 | 博客
  • 博客访问: 266819
  • 博文数量: 170
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1709
  • 用 户 组: 普通用户
  • 注册时间: 2014-05-06 18:01
文章分类

全部博文(170)

文章存档

2016年(11)

2015年(130)

2014年(29)

分类: Java

2015-03-22 16:59:20

import java.util.ArrayList;
import java.util.List;


//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 PascalsTriangle {


public static void main(String[] args) {
// TODO 自动生成的方法存根
System.out.print(generate(5));
}
public static List> generate(int numRows) {
List> temp=new ArrayList>();
if(numRows<=0){
return temp;
}
ArrayList subtemp=new ArrayList();
ArrayList pretemp;
subtemp.add(1);
temp.add(subtemp);
pretemp=subtemp;
for(int i=2;i<=numRows;i++){
subtemp=new ArrayList();
subtemp.add(1);

for(int j=1;j subtemp.add(pretemp.get(j-1)+pretemp.get(j));
}
subtemp.add(1);
temp.add(subtemp);
pretemp=subtemp;
}
return temp;



}
}






阅读(210) | 评论(0) | 转发(0) |
0

上一篇:PalindromeNumber

下一篇:PascalTriangleTwo

给主人留下些什么吧!~~