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

118. Pascal's Triangle

时间:2017-09-21 16:44:39      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:amp   span   turn   cto   class   resize   div   size   nbsp   

Given numRows, generate the first numRows of Pascal‘s triangle.

For example, given numRows = 5,
Return

[
     [1],
    [1,1],
   [1,2,1],
  [1,3,3,1],
 [1,4,6,4,1]
]


C++(3ms):
 1 class Solution {
 2 public:
 3     vector<vector<int>> generate(int numRows) {
 4         vector<vector<int>> res(numRows) ;
 5         if (numRows < 1)
 6             return res ;
 7         for (int i = 0 ; i < numRows ; i++){
 8             res[i].resize(i + 1);
 9             res[i][0] = res[i][i] = 1 ;
10             for (int j = 1 ; j < i ; j++){
11                 res[i][j] = res[i-1][j-1]+res[i-1][j] ;
12                 res[i][i-j] = res[i][j] ;
13             }             
14         }
15         return res ;
16     }
17 };

 

118. Pascal's Triangle

标签:amp   span   turn   cto   class   resize   div   size   nbsp   

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

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