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
    ");
            
    
         }
    
    }
  • 相关阅读:
    理解OAuth 2.0
    Npoi导出word(Peanuts)
    轻松搞定javascript日期格式化问题
    史上最全的MSSQL复习笔记
    SQL经典短小代码收集
    Web系统与自控系统数据通讯架构 之 OPC DA DataChangeEventHandler 非热点数据更新策略 ,
    记一次SQL Server insert触发器操作
    记一次单机Nginx调优,效果立竿见影
    windows 显示引用账户已被锁定,且可能无法登录
    C# 使用modbus 读取PLC 寄存器地址
  • 原文地址:https://www.cnblogs.com/ccccnzb/p/3411677.html
Copyright © 2011-2022 走看看