zoukankan      html  css  js  c++  java
  • zoj 3210 A Stack or A Queue? (数据结构水题)

    版权声明:本文为博主原创文章。未经博主同意不得转载。 https://blog.csdn.net/u014253173/article/details/26284647
    
    A Stack or A Queue?

    Time Limit: 1 Second      Memory Limit: 32768 KB

    Do you know stack and queue? They're both important data structures. A stack is a "first in last out" (FILO) data structure and a queue is a "first in first out" (FIFO) one.

    Here comes the problem: given the order of some integers (it is assumed that the stack and queue are both for integers) going into the structure and coming out of it, please guess what kind of data structure it could be - stack or queue?

    Notice that here we assume that none of the integers are popped out before all the integers are pushed into the structure.

    Input

    There are multiple test cases. The first line of input contains an integer T (T <= 100), indicating the number of test cases. Then T test cases follow.

    Each test case contains 3 lines: The first line of each test case contains only one integer N indicating the number of integers (1 <= N <= 100). The second line of each test case contains N integers separated by a space, which are given in the order of going into the structure (that is, the first one is the earliest going in). The third line of each test case also contains N integers separated by a space, whick are given in the order of coming out of the structure (the first one is the earliest coming out).

    Output

    For each test case, output your guess in a single line. If the structure can only be a stack, output "stack"; or if the structure can only be a queue, output "queue"; otherwise if the structure can be either a stack or a queue, output "both", or else otherwise output "neither".

    Sample Input

    4
    3
    1 2 3
    3 2 1
    3
    1 2 3
    1 2 3
    3
    1 2 1
    1 2 1
    3
    1 2 3
    2 3 1
    

    Sample Output

    stack
    queue
    both
    neither


    水题一道~,主要是考察栈和队列的基本原理,先入先出的是队列,后入先出的是栈~,

    主要是对输入和输出进行推断即可了,是否能与他们吻合。

    以下是ac的代码:

    #include <iostream>
    #include <cstdio>
    using namespace std;
    const int maxn=120;
    int a[maxn];
    int main()
    {
       int t,n,x;
       scanf("%d",&t);
       while(t--)
       {
           bool isqueue=true; //推断是栈还是队列
           bool isstack=true;
           scanf("%d",&n);
           for(int i=0;i<n;i++)
            scanf("%d",&a[i]);
           for(int i=0;i<n;i++)
           {
            scanf("%d",&x);
            if(x!=a[i])
                isqueue=false;
            if(x!=a[n-i-1])
                isstack=false;
           }
           if(isstack&&isqueue)
              printf("both
    ");
           else if(isqueue)
            printf("queue
    ");
           else if(isstack)
            printf("stack
    ");
           else
            printf("neither
    ");
       }
        return 0;
    }
    

查看全文
  • 相关阅读:
    Php ArrayIterator的几个常用方法
    13 子元素和后代元素选择器 1 元素之间的关系 2 后代元素选择器 后代 元素用的是空格 3 子元素选择器 用的是>号 4 ietest的使用
    12常用选择器 1元素选择器 2 id选择器3 class类选择器 4 一个元素可以设置多个class属性值 5 选择器分组又叫并集选择器 6 通配选择器 * 7 复合选择器 交集选择器
    11 1 块元素div的定义 2 常见的块元素 3 块元素的用途 4 内联元素,行内元素,span 5 内联元素和块元素的用途 6 a元素超链接的用法 7 p元素不可以包含任何其他的块元素
    10 1、IDE,dreamweaver,webstorm,hbuilder 2 Hbuilder快捷键
    9 1 css的注释 2 css的语法:选择器,声明块
    8 1 css 2 元素就是标签 2 内联样式 3 css选择器 style ,head ,内部样式表 4 外部样式表 css文件, link标签 ,href,
    7 1 超链接 a标签 href ,_self,_blank 2 center标签 居中显示 3 # 4 回到顶部 5 id定位 6 电子邮件超链接
    5 1 html的语法规范 大小写,注释嵌套,标签成对出现,属性,值,加引号
    4 1meta标签,name ,content,keywords,description,url,refresh
  • 原文地址:https://www.cnblogs.com/ldxsuanfa/p/10895837.html
  • Copyright © 2011-2022 走看看