码迷,mamicode.com
首页 > 编程语言 > 详细

杨辉三角(数组)

时间:2020-03-06 15:00:14      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:har   fir   oid   class   put   std   output   space   turn   

//杨辉三角(数组)
/*
* @Description: Given a non-negative integer numRows, generate the first numRows of Pascal‘s triangle.
 * Input: 5
 * Output:
 * [
 *      [1],
 *     [1,1],
 *    [1,2,1],
 *   [1,3,3,1],
 *  [1,4,6,4,1]
 * ]
*/
#include <stdlib.h>
#include <vector>
#include <iostream>
using namespace std;

vector<vector<int>> generate(int numRows){
    vector<vector<int>> pascalTriangle;
    for(int i = 0; i < numRows; i++){
       vector<int> v;
       if(i == 0){
           v.push_back(1);
       }
       else{
           v.push_back(1);
           for(int j=0; j < pascalTriangle[i-1].size()-1;j++){
               v.push_back(pascalTriangle[i-1][j] + pascalTriangle[i-1][j+1]);
           }
           v.push_back(1);
       }
       pascalTriangle.push_back(v);
    }
    return pascalTriangle;
}

void printTriangle(vector<vector<int>> pt){
    cout << "[" << endl;
    for(int i = 0;i<pt.size();i++){
        for(int space=(pt.size()-i-1);space>=0;space--){
            cout << " ";
        }
        for(int j = 0; j < pt[i].size(); j++){
            cout << pt[i][j];
            if(j<pt[i].size()-1){
                cout << ",";
            }
        }

        cout << "]";
        if(i<pt.size()-1){
            cout << ",";
        }
        cout << endl;
    }
    cout <<  "]" << endl;
}

int main(int argc, char**argv)
{
    int n = 3;
    if(argc > 1){
        n = atoi(argv[1]);
    }
    printTriangle(generate(n));
}

  

杨辉三角(数组)

标签:har   fir   oid   class   put   std   output   space   turn   

原文地址:https://www.cnblogs.com/hujianglang/p/12426376.html

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