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

Pascal's Triangle II -- leetcode

时间:2015-05-17 16:51:36      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:triangle   pascal   leetcode   

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?

基本思路:

内层循环,使用递减方式。

因为计算当前值时,需要用到上一行的当前列和前一列。

如果从前向后的话,需要额外使用一个变量,来保存前一列的历史值。


class Solution {
public:
    vector<int> getRow(int rowIndex) {
        vector<int> ans(rowIndex+1, 1);
        for (int i=0; i<=rowIndex; i++) {
            for (int j=i-1; j>0; j--) {
                ans[j] += ans[j-1];
            }
        }
        return ans;
    }
};


Pascal's Triangle II -- leetcode

标签:triangle   pascal   leetcode   

原文地址:http://blog.csdn.net/elton_xiao/article/details/45788933

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