队列应用

Posted wsl96

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了队列应用相关的知识,希望对你有一定的参考价值。

 

n个人站一圈,数 1 2 1 2,数到1的出来,数到2 的继续保持一个圈。

输入 1 2 3 4 5 6 7 8

输出 1 3 5 7 2 6 4 8

#include<iostream>
#include<queue>
using namespace std;
int main(){
    int n,flag=0;
    cin>>n;
    queue<int> qq;
    for(int i=1;i<=n;i++)
        qq.push(i);
    while(!qq.empty()){
            cout<<qq.front()<<" ";
            qq.pop();
            qq.push(qq.front());
            qq.pop();        
    }
    return 0;
} 

 

以上是关于队列应用的主要内容,如果未能解决你的问题,请参考以下文章

perl中的队列

jQuery应用 代码片段

完全下载文件时,将下载的文件从一个片段传递到另一个片段

如何使用 Swift 使用此代码片段为 iOS 应用程序初始化 SDK?

IPC System V 消息队列 - 发送一个数组块

rabbitmq - 不会获取队列中的所有消息