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
    ");
            
    
         }
    
    }
  • 相关阅读:
    xyplorer设置备忘
    如何在CentOS 8上安装Python2 Python3
    为CentOS 8操作系统安装MySQL的方法,以安装MySQL 8为例
    SSH登录服务器报ECDSA host key "ip地址" for has changed and you have requested strict checking
    Linux常用命令大全
    转载:php的几种常用的数据交换格式
    转:GBK编码 VS UTF8编码
    转载:中文在UTF8和GBK编码中的范围
    转:SDL Specification and Description Language 简介
    转:Java中Split函数的用法技巧
  • 原文地址:https://www.cnblogs.com/ccccnzb/p/3411677.html
Copyright © 2011-2022 走看看