light oj 1212 - Double Ended Queue (双向队列)

1212 - Double Ended Queue
Time Limit: 0.5 second(s)Memory Limit: 32 MB

A queue is a data structure based on the principle of 'First In First Out' (FIFO). There are two ends; one end can be used only to insert an item and the other end to remove an item. A Double Ended Queue is a queue where you can insert an item in both sides as well as you can delete an item from either side. There are mainly four operations available to a double ended queue. They are:

1.      pushLeft(): inserts an item to the left end of the queue with the exception that the queue is not full.

2.      pushRight(): inserts an item to the right end of the queue with the exception that the queue is not full.

3.      popLeft(): removes an item from the left end of the queue with the exception that the queue is not empty.

4.      popRight(): removes an item from the right end of the queue with the exception that the queue is not empty.

Now you are given a queue and a list of commands, you have to report the behavior of the queue.

Input

Input starts with an integer T (≤ 20), denoting the number of test cases.

Each case starts with a line containing two integers n, m (1 ≤ n ≤ 10, 1 ≤ m ≤ 100), where n denotes the size of the queue and m denotes the number of commands. Each of the next m lines contains a command which is one of:

pushLeft x        pushes x (-100 ≤ x ≤ 100) in the left end of the queue

pushRight x      pushes x (-100 ≤ x ≤ 100) in the right end of the queue

popLeft             pops an item from the left end of the queue

popRight           pops an item from the right end of the queue


Output

For each case, print the case number in a line. Then for each operation, show its corresponding output as shown in the sample. Be careful about spelling.

Sample Input

Output for Sample Input

1

3 8

pushLeft 1

pushLeft 2

pushRight -1

pushRight 1

popLeft

popRight

popLeft

popRight

Case 1:

Pushed in left: 1

Pushed in left: 2

Pushed in right: -1

The queue is full

Popped from left: 2

Popped from right: -1

Popped from left: 1

The queue is empty

 双向队列,如上图,左右两端都可以既队列又出队列;

解:这题的数据不大,开一个数组,从中间开始模拟队列的进出

代码:

/*
l, r 是加是减 用具体几个数试试就清楚了
*/

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
int main()
{
    int t,k=1,n,m,x,l,r;
    int a[30];  //队列已经限制小于10
    char str[20];
    cin>>t;
    while(t--)
    {        
        cout<<"Case "<<k++<<":"<<endl;
        int l=r=15;//从中间开始
        cin>>n>>m;
        for(int i=0;i<m;i++)
        {
            cin>>str;
            if(str[1]=='u')//进队列的情况
            {
                cin>>x;
                if(r-l>=n)                    
                    cout<<"The queue is full"<<endl;
                else
                {
                    if(str[4]=='L')
                    {                        
                        cout<<"Pushed in left: "<<x<<endl;
                        a[l]=x;l--;
                    }
                    else
                    {                        
                        cout<<"Pushed in right: "<<x<<endl;
                        r++;a[r]=x;
                    }
                }
            }
            else//出队列的情况
            {
                if(l==r)                   
                    cout<<"The queue is empty"<<endl;
                else
                {
                    if(str[3]=='L')
                    {                        
                        cout<<"Popped from left: "<<a[l+1]<<endl;
                        l++;
                    }
                    else
                    {
                        cout<<"Popped from right: "<<a[r]<<endl;
                        r--;
                    }
                }
            }
        }
    }
    return 0;
}




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
杭州电子科技大学在线评测系统(杭电OJ)中的题目1000-1100是一系列编程题,我将分别进行回答。 1000题是一个简单的入门题,要求计算两个整数的和。我们可以使用一个简单的算法,读取输入的两个整数,然后将它们相加,最后输出结果即可。 1001题是一个稍微复杂一些的题目,要求实现字符串的逆序输出。我们可以使用一个循环来逐个读取输入的字符,然后将这些字符存储在一个数组中。最后,我们可以倒序遍历数组并将字符依次输出,实现字符串的逆序输出。 1002题是一个求最大公约数的问题。我们可以使用辗转相除法来解决,即先求出两个数的余数,然后将被除数更新为除数,将除数更新为余数,直至两个数的余数为0。最后的被除数就是最大公约数。 1003题是一个比较简单的排序问题。我们可以使用冒泡排序算法来解决,即每次比较相邻的两个元素,如果它们的顺序错误就交换它们的位置。重复这个过程直至整个数组有序。 1100题是一个动态规划问题,要求计算给定序列中的最长上升子序列的长度。我们可以使用一个数组dp来保存到达每个位置的最长上升子序列的长度。每当遍历到一个位置时,我们可以将其和之前的位置比较,如果比之前位置的值大,则将其更新为之前位置的值加1,最后返回dp数组的最大值即可。 以上是对杭电OJ1000-1100题目的简要回答,涉及了一些基本的编程知识和算法思想。希望对您有所帮助。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值