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
    ");
            
    
         }
    
    }
  • 相关阅读:
    网络基本功(一)细说网络传输
    关于指针的理解
    百度地图定位,标注以及地图中心点问题
    ios 将彩色照片转化成黑白等几种类型
    在 iOS 应用中直接跳转到 AppStore 的方法
    ios中判断当前手机的网络状态
    NTFS 读写高手进阶 Windows 格式硬盘 Mac存文件 开启 ...(转载)
    tableviewcell 中使用autolayout自适应高度
    ios 3D Touch功能的实现
    一些牛人分享的ios技巧,保留着
  • 原文地址:https://www.cnblogs.com/ccccnzb/p/3411677.html
Copyright © 2011-2022 走看看