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

打印杨辉三角(STL版队列)

时间:2015-04-22 18:39:21      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:数据结构   杨辉三角   队列   stl   c++   

#include <iostream>
#include <queue>
using namespace std;

void YangHuiTriangle(int n);
int main()
{
	cout<<"请输入杨辉三角的层数:";
	int x;
	cin>>x; 
    YangHuiTriangle(x);
	return 0;
}

void YangHuiTriangle(int n)
{
	queue<int> q;
	q.push(0);
	q.push(1);
	
	int x,y; 
	for(int i=0;i<n;i++)
	{
		q.push(0);
		for(int j=n;j>i;j--)
		cout<<" ";
		do
		{
			x = q.front();
			q.pop();
			
			y = q.front();
			
			y!=0? cout<<y<<" " : cout<<" " ;
			q.push((x+y));
		}while(y!=0);
		cout<<endl; 
	}
}

打印杨辉三角(STL版队列)

标签:数据结构   杨辉三角   队列   stl   c++   

原文地址:http://blog.csdn.net/huolang_vip/article/details/45195363

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