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

119. Pascal's Triangle II

时间:2017-09-23 16:21:33      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:class   nbsp   vector   row   ext   pre   get   res   asc   

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?

 

只用O(k)的额外空间,求第K行帕斯卡三角形的数

 

C++(0ms):

 1 class Solution {
 2 public:
 3     vector<int> getRow(int rowIndex) {
 4         vector<int> res(rowIndex+1,0) ;
 5         res[0] = 1 ;
 6         for(int i = 1 ; i < rowIndex+1 ; i++){
 7             for(int j = i ; j >=1 ; j--){
 8                 res[j] += res[j-1] ;
 9             }
10         }
11         return res ;
12     }
13 };

 

119. Pascal's Triangle II

标签:class   nbsp   vector   row   ext   pre   get   res   asc   

原文地址:http://www.cnblogs.com/-Buff-/p/7581194.html

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