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

Pascal's Triangle II

时间:2015-07-03 15:26:28      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:

题目:

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?

 

Code:

public class Solution 
{
    public ArrayList<Integer> getRow(int rowIndex) 
    {
        ArrayList<Integer> result = new ArrayList<Integer>();
        if(rowIndex<0)return result;
        result.add(1);
        for(int i=1;i<=rowIndex;i++)
        {
            
            for (int j=result.size()-2;j>=0;j--)
            {
                result.set(j+1,result.get(j)+result.get(j+1)); //****Good Idea!!!
            }
            result.add(1); 

        }
        
        return result;
        
    }
  
}

 

Pascal's Triangle II

标签:

原文地址:http://www.cnblogs.com/hygeia/p/4618540.html

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