zoukankan      html  css  js  c++  java
  • 栈与队列 poj1028

    题目地址:http://poj.org/problem?id=1028

    Description

    Standard web browsers contain features to move backward and forward among the pages recently visited. One way to implement these features is to use two stacks to keep track of the pages that can be reached by moving backward and forward. In this problem, you are asked to implement this. 
    The following commands need to be supported: 
    BACK: Push the current page on the top of the forward stack. Pop the page from the top of the backward stack, making it the new current page. If the backward stack is empty, the command is ignored. 
    FORWARD: Push the current page on the top of the backward stack. Pop the page from the top of the forward stack, making it the new current page. If the forward stack is empty, the command is ignored. 
    VISIT : Push the current page on the top of the backward stack, and make the URL specified the new current page. The forward stack is emptied. 
    QUIT: Quit the browser. 
    Assume that the browser initially loads the web page at the URL http://www.acm.org/

    Input

    Input is a sequence of commands. The command keywords BACK, FORWARD, VISIT, and QUIT are all in uppercase. URLs have no whitespace and have at most 70 characters. You may assume that no problem instance requires more than 100 elements in each stack at any time. The end of input is indicated by the QUIT command.

    Output

    For each command other than QUIT, print the URL of the current page after the command is executed if the command is not ignored. Otherwise, print "Ignored". The output for each command should be printed on its own line. No output is produced for the QUIT command.

    Sample Input

    VISIT http://acm.ashland.edu/
    VISIT http://acm.baylor.edu/acmicpc/
    BACK
    BACK
    BACK
    FORWARD
    VISIT http://www.ibm.com/
    BACK
    BACK
    FORWARD
    FORWARD
    FORWARD
    QUIT

    Sample Output

    http://acm.ashland.edu/
    http://acm.baylor.edu/acmicpc/
    http://acm.ashland.edu/
    http://www.acm.org/
    Ignored
    http://acm.ashland.edu/
    http://www.ibm.com/
    http://acm.ashland.edu/
    http://www.acm.org/
    http://acm.ashland.edu/
    http://www.ibm.com/
    Ignored

    Source

     
     
    模拟网页的前进与后退,要注意一点问题,当网页后退过程中,点如一个新网页则不能再前进,只有后退,此时应把前栈清空
    可以自己打开网页体验一下
    #include <stdio.h>
    #include <string.h>
    #include <stack>
    #include <string>
    #include <iostream>
    using namespace std;
    int main()
    {
         int i,j,k,t;
         char web[105],action[105];
         stack<string> f;
         stack<string> b;
         //char x[105]="http://www.acm.org/";
         b.push("http://www.acm.org/");
    
         while(scanf("%s",action)!=EOF&&action[0]!='Q')
         {
              getchar();
              if(action[0]=='V'&&!b.empty())
              {
                  gets(web);
                  b.push(web);
                  cout<<b.top()<<endl;
                  while(!f.empty())f.pop();
                  f.push("http://www.acm.org/");
              }
             else if(action[0]=='B'&&b.size()>1)
              {
                  f.push(b.top());
                  b.pop();
                  cout<<b.top()<<endl;
                  //b.push(f.top());
              }
             else if(action[0]=='F'&&f.size()>1)
              {
                cout<<f.top()<<endl;
                b.push(f.top());
                f.pop();
    
              }
              else if(b.size()<=1||f.size()<=1) printf("Ignored
    ");
            
    
         }
    
    }
  • 相关阅读:
    指针加减法运算的“定义域”
    将main()进行到底
    带命令行参数的main函数的误解[到处转载的垃圾]
    亡羊补牢还是越错越远——“C99允许在函数中的复合语句中定义变量”
    会错意表错情,搭错车上错床——“度日如年”的故事及“feof()”的故事
    狗屁不通的《C语言详解:什么是表达式、语句、表达式语句?》
    已知两边长求三角形面积
    用驴子拖宝马——怎样滥用结构体
    糟蹋好题——魔方阵问题
    怎样建立链表并同时造成内存泄露
  • 原文地址:https://www.cnblogs.com/ccccnzb/p/3411677.html
Copyright © 2011-2022 走看看