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

Pascal's Triangle--LeetCode

时间:2015-04-09 10:35:44      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:c++   leetcode   算法   

题目:

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]
]
思路:第n层有n个数,而且第n层的首尾都是1,中间是上一层的两个的和

#include <iostream>
#include <vector>
#include <string>
using namespace std;

void  Pascaltriangle(int n)
{
	vector<vector<int> > result;
	int i,j;
	
	for(i=0;i<n;i++)
	{
		vector<int> tmp;
		for(j=0;j<=i;j++)
		{
			if(j==0 || j == i)			
				tmp.push_back(1);
			else
				tmp.push_back(result[i-1][j]+result[i-1][j-1]);
		}
		result.push_back(tmp);
	}
	
	for(i=0;i<result.size();i++)
	{
		for(j=0;j<result[i].size();j++)
			cout<<result[i][j]<<" ";
		cout<<endl;
	}
	
}


int main()
{
	Pascaltriangle(5);;
	return 0;
}




Pascal's Triangle--LeetCode

标签:c++   leetcode   算法   

原文地址:http://blog.csdn.net/yusiguyuan/article/details/44955559

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