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

间隔输出队列

时间:2016-06-11 13:19:20      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

初始化队列后,输出对头元素,然后将第二个元素放在队尾,依次类推,直到队列元素全部输出

 

利用C++自带的队列头文件

源代码如下:

#include<cstdio>
#include<queue>
using namespace std;
queue<int>q;
int main()
{
    
    int n;
    int i;
    scanf("%d",&n);
    for(i=0;i<n;i++)
        q.push(i+1);
    while(!q.empty())
    {
        printf("%d  ",q.front());
        q.pop();
        if(!q.empty())
        {q.push(q.front());
        q.pop();
        }
    }
    return 0;
}

 

间隔输出队列

标签:

原文地址:http://www.cnblogs.com/ly-rabbit-wust/p/5575142.html

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