uva 11995 棧,佇列,優先佇列,等基本資料結構的應用與理解
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=3146
Problem I
I Can Guess the Data Structure!
There is a bag-like data structure, supporting two operations:
1 x
Throw an element x into the bag.
2
Take out an element from the bag.
Given a sequence of operations with return values, you're going to guess the data structure. It is a stack (Last-In, First-Out), a queue (First-In, First-Out), a priority-queue (Always take out larger elements first) or something else that you can hardly imagine!
Input
There are several test cases. Each test case begins with a line containing a single integer n (1<=n<=1000). Each of the next n lines is either a type-1 command, or an integer 2 followed by an integer x. That means after executing a type-2 command, we get an element x without error. The value of x is always a positive integer not larger than 100. The input is terminated by end-of-file (EOF). The size of input file does not exceed 1MB.
Output
For each test case, output one of the following:
stack
It's definitely a stack.
queue
It's definitely a queue.
priority queue
It's definitely a priority queue.
impossible
It can't be a stack, a queue or a priority queue.
not sure
It can be more than one of the three data structures mentioned above.
Sample Input
6 1 1 1 2 1 3 2 1 2 2 2 3 6 1 1 1 2 1 3 2 3 2 2 2 1 2 1 1 2 2 4 1 2 1 1 2 1 2 2 7 1 2 1 5 1 1 1 3 2 5 1 4 2 4
Output for the Sample Input
queue not sure impossible stack priority queue
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <queue>
#include <stack>
using namespace std;
queue<int>q;
stack<int>s;
priority_queue<int>p;
int n,x,y;
int main()
{
while(~scanf("%d",&n))
{
while(!q.empty())
q.pop();
while(!s.empty())
s.pop();
while(!p.empty())
p.pop();
int flagq=1,flagp=1,flags=1;
int a;
for(int i=0; i<n; i++)
{
scanf("%d%d",&x,&y);
if(x==1)
{
q.push(y);
p.push(y);
s.push(y);
}
else
{
if(flagq==1)
{
if(q.empty())
{
flagq=0;
}
else
{
a=q.front();
q.pop();
if(a!=y)
flagq=0;
}
}
if(flagp==1)
{
if(p.empty())
{
flagp=0;
}
else
{
a=p.top();
p.pop();
if(a!=y)
flagp=0;
}
}
if(flags==1)
{
if(s.empty())
{
flags=0;
}
else
{
a=s.top();
s.pop();
if(a!=y)
flags=0;
}
}
}
}
if(flagq&&!flagp&&!flags)
{
printf("queue\n");
continue;
}
if(!flagq&&flagp&&!flags)
{
printf("priority queue\n");
continue;
}
if(!flagq&&!flagp&&flags)
{
printf("stack\n");
continue;
}
if(!flagq&&!flagp&&!flags)
{
printf("impossible\n");
continue;
}
printf("not sure\n");
}
return 0;
}
相關文章
- 三、資料結構演算法-棧、佇列、優先佇列、雙端佇列資料結構演算法佇列
- 資料結構-棧與佇列資料結構佇列
- 資料結構-佇列、棧資料結構佇列
- python資料結構與演算法——棧、佇列與雙端佇列Python資料結構演算法佇列
- 資料結構(棧和佇列)資料結構佇列
- 資料結構—棧和佇列資料結構佇列
- php實現基本資料結構之棧、佇列PHP資料結構佇列
- JavaScript資料結構之陣列棧佇列JavaScript資料結構陣列佇列
- 棧,佇列,優先順序佇列簡單介面使用佇列
- 資料結構與演算法-棧與佇列資料結構演算法佇列
- 線性結構 佇列與棧佇列
- 畫江湖之資料結構【第二話:佇列和棧】佇列資料結構佇列
- 畫江湖之資料結構 [第二話:佇列和棧] 佇列資料結構佇列
- 演算法與資料結構番外(1):優先佇列演算法資料結構佇列
- Java版-資料結構-佇列(陣列佇列)Java資料結構佇列陣列
- 堆與優先佇列佇列
- 【資料結構】棧(Stack)和佇列(Queue)資料結構佇列
- 資料結構二之棧和佇列資料結構佇列
- 資料結構與演算法——佇列(環形佇列)資料結構演算法佇列
- 『演算法與資料結構』優先佇列 二叉堆演算法資料結構佇列
- 《資料結構與演算法》——表、棧和佇列資料結構演算法佇列
- 資料結構 - 佇列資料結構佇列
- 資料結構-佇列資料結構佇列
- 【資料結構-----佇列】資料結構佇列
- 資料結構之PHP(最大堆)實現優先佇列資料結構PHP佇列
- Java版-資料結構-佇列(迴圈佇列)Java資料結構佇列
- 【資料結構】棧和佇列的總結對比資料結構佇列
- 資料結構-js實現棧和佇列資料結構JS佇列
- 【資料結構】佇列(順序佇列、鏈佇列)的JAVA程式碼實現資料結構佇列Java
- 資料結構與演算法(二)佇列、棧、連結串列資料結構演算法佇列
- 佇列:佇列線上程池等有限資源池中的應用佇列
- PHP優先佇列PHP佇列
- 前端資料結構(2)之佇列及其應用前端資料結構佇列
- 資料結構之「佇列」資料結構佇列
- 資料結構-佇列-樹資料結構佇列
- 資料結構:特殊的線性表之 棧 & 佇列資料結構佇列
- 學習JavaScript資料結構(一)——棧和佇列JavaScript資料結構佇列
- 聊聊陣列與連結串列,棧與佇列陣列佇列
- 資料結構與演算法-佇列資料結構演算法佇列