首页 > 其他 > 详细

[LeetCode119]Pascal's Triangle II

时间:2016-02-03 16:27:45      阅读:122      评论: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?

求杨辉三角(也叫帕斯卡三角)的第n行

杨辉三角百度百科链接

http://baike.baidu.com/link?url=7YQlDvHXtPgr6zVk-Vaw1YG8TncQHUuSNoOrx8f61sj2kG-XCFGPmqvttAn8nleqW46fKGGWTY9tYyB9F7YVTK

代码:

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

 

[LeetCode119]Pascal's Triangle II

原文:http://www.cnblogs.com/zhangbaochong/p/5179943.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!