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

119. Pascal's Triangle II

时间:2018-05-18 17:13:44      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:syn   span   i++   return   static   pascal   计算   lse   style   

 1 static int wing=[]()
 2 {
 3     std::ios::sync_with_stdio(false);
 4     cin.tie(NULL);
 5     return 0;
 6 }();
 7 
 8 class Solution 
 9 {
10 public:
11     vector<int> getRow(int rowIndex) 
12     {
13         vector<int> res(rowIndex+1,0);
14         res[0]=1;
15         for(int i=1;i<rowIndex+1;i++)
16             for(int j=i;j>=1;j--)
17                 res[j]+=res[j-1];
18         return res;    
19     }
20 };

这个直接计算杨辉三角某一行的算法有点骚。

119. Pascal's Triangle II

标签:syn   span   i++   return   static   pascal   计算   lse   style   

原文地址:https://www.cnblogs.com/zhuangbijingdeboke/p/9056964.html

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