91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

leetCode 118. Pascal's Triangle 數組 (楊輝三角)

發布時間:2020-07-06 16:34:12 來源:網絡 閱讀:911 作者:313119992 欄目:編程語言

118. Pascal's Triangle


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]
]

題目大意:

輸入行數,輸出如上圖所示的數組。(楊輝三角)

思路:

用雙vector來處理當前行和下一行。

代碼如下:

class Solution {
public:
    vector<vector<int>> generate(int numRows) {
        
        vector<vector<int>> result;
        if(numRows == 0)
            return result;
        vector<int> curVec;
        vector<int> nextVec;
        
        for(int i = 0;i < numRows; i++)
        {
            for(int j = 0;j<=i;j++)
            {
                if(j == 0)
                    nextVec.push_back(1);
                else
                {
                    if(j >= curVec.size())
                        nextVec.push_back(curVec[j-1]);
                    else
                        nextVec.push_back(curVec[j] + curVec[j-1]);
                }
            }
            result.push_back(nextVec);
            curVec.swap(nextVec);
            nextVec.clear();
        }
        return result;
    }
};

2016-08-12 09:34:50

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

怀宁县| 师宗县| 拉萨市| 宜兰县| 上虞市| 北票市| 柏乡县| 修武县| 盐津县| 巨野县| 福泉市| 中西区| 军事| 永福县| 秦安县| 苍南县| 团风县| 沧州市| 呼玛县| 宁国市| 东至县| 唐山市| 金平| 会宁县| 阳山县| 广德县| 读书| 清镇市| 永顺县| 敦化市| 巍山| 西盟| 许昌市| 酉阳| 邵阳市| 涿州市| 临桂县| 昌吉市| 榆中县| 太湖县| 西林县|