Loading

[LeetCode]杨辉三角 II

题目

 

代码 

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

        }
        return array;

    }
};

 

posted @ 2019-02-23 10:24  李正浩  阅读(128)  评论(0编辑  收藏  举报