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

Pascal's Triangle II--LeetCode

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

标签:leetcode   c++   算法   

 

题目:

Given an index k, return the kth row of the Pascal‘s triangle.

For example, given k = 3,
Return [1,3,3,1].

Note:
Could you optimize your algorithm to use only O(k) extra space?

思路:只用一个向量作为最终结果的存储空间即可,中间一直使用这个向量来更新。

//第k层的数 
void PascaltriangleKth(int k)
{
	vector<int> result(k,0);
	int tmp1,tmp;
	for(int i=0;i<k;i++)
	{
		for(int j=0;j<=i;j++)
		{
			if(j==0 || j==i)
			{
				tmp = 0;
				tmp1 = 1;
				result[j]=1;
			}
				
			else
			{
				tmp = result[j];
				result[j] += tmp1;
				tmp1 = tmp;
			}
		}
	}
	
	for(int j=0;j<result.size();j++)
		cout<<result[j]<<" ";
	cout<<endl; 
} 

Pascal's Triangle II--LeetCode

标签:leetcode   c++   算法   

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

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