• Web Navigation 模拟


    Web Navigation
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 27179   Accepted: 12164

    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

    char op[100];
    string web;
    vector<string> w;
    list<string> f;
    int main() 
    {
        //freopen("in.txt","r",stdin);
        w.push_back("http://www.acm.org/");
        while(scanf("%s",op) == 1 && op[0] != 'Q')
        {
            if(op[0] == 'V')
            {
                cin>>web;
                cout<<web<<endl;
                w.push_back(web);
                f.clear();
            }
            if(op[0] == 'B')
            {
                if(w.size() == 1)
                    cout<<"Ignored
    ";
                else
                {
                    f.push_back(w.back());
                    w.pop_back();
                    if(w.size())
                        cout<<w.back()<<endl;
                    else
                        cout<<"Ignored
    "; 
                }  
            }
            if(op[0] == 'F')
            {
                if(f.size() == 0)
                    cout<<"Ignored
    ";
                else
                {
                    w.push_back(f.back());
                    cout<<f.back()<<endl;
                    f.pop_back();
                }
            }
        }
        return 0;
    }
  • 相关阅读:
    尝试了一下Flex
    Flash版的拉格朗日插值程序
    关于CSS属性display:none和visible:hidden的区别
    KMaster知识管理平台功能简介
    企业级知识库系统KMaster推荐
    ie6下的location.href错误
    利用Jquery实现http长连接(LongPoll)
    jQuery高亮插件
    当前知识管理系统的焦点问题以及我的一些解决办法
    知识库如何跟其他业务系统结合
  • 原文地址:https://www.cnblogs.com/DreamHighWithMe/p/3442069.html
Copyright © 2020-2023  润新知