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

Problem Pascal's Triangle II

时间:2014-07-07 15:47:17      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   strong   for   

Problem Description:

Given an index k, return the kth row of the Pascal‘s triangle.

For example, given k = 3,
Return [1,3,3,1].

Note:
Could you optimize your algorithm to use only O(k) extra space?

 

 Solution:
 1     public List<Integer> getRow(int rowIndex) {
 2 List<Integer> row = new ArrayList<Integer>();
 3         List<Integer> preRow = new ArrayList<Integer>();
 4         for (int i = 0; i <= rowIndex; i++) {
 5             preRow.add(1);
 6             row.add(1);
 7         }
 8             for (int i = 0; i <= rowIndex; i++) {
 9             for (int j = 0; j <= i; j++) {
10                 if (j == 0 || j == i) {
11                     row.set(j, 1);
12                 } else {
13                     row.set(j, preRow.get(j-1)+preRow.get(j));
14                 }
15             }
16             List<Integer> temp = preRow;
17             preRow = row;
18             row = temp;
19         }
20 
21         return preRow;
22     }

 

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

Problem Pascal's Triangle II

标签:des   style   blog   color   strong   for   

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

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