zoukankan      html  css  js  c++  java
  • ACM学习历程——UVA11234 Expressions(栈,队列,树的遍历,后序遍历,bfs)

    Description

    Download as PDF
     
    Problem E: Expressions
    2007/2008 ACM International Collegiate Programming Contest University of Ulm Local Contest

    Problem E: Expressions

    Arithmetic expressions are usually written with the operators in between the two operands (which is called infix notation). For example, (x+y)*(z-w) is an arithmetic expression in infix notation. However, it is easier to write a program to evaluate an expression if the expression is written in postfix notation (also known as reverse polish notation). In postfix notation, an operator is written behind its two operands, which may be expressions themselves. For example, x y + z w - * is a postfix notation of the arithmetic expression given above. Note that in this case parentheses are not required.

    To evaluate an expression written in postfix notation, an algorithm operating on a stack can be used. A stack is a data structure which supports two operations:

    1. push: a number is inserted at the top of the stack.
    2. pop: the number from the top of the stack is taken out.

    During the evaluation, we process the expression from left to right. If we encounter a number, we push it onto the stack. If we encounter an operator, we pop the first two numbers from the stack, apply the operator on them, and push the result back onto the stack. More specifically, the following pseudocode shows how to handle the case when we encounter an operator O:

    a := pop();
    b := pop();
    push(b O a);

    The result of the expression will be left as the only number on the stack.

    Now imagine that we use a queue instead of the stack. A queue also has a push and pop operation, but their meaning is different:

    1. push: a number is inserted at the end of the queue.
    2. pop: the number from the front of the queue is taken out of the queue.

    Can you rewrite the given expression such that the result of the algorithm using the queue is the same as the result of the original expression evaluated using the algorithm with the stack?

    Input Specification

    The first line of the input contains a number T (T ≤ 200). The following T lines each contain one expression in postfix notation. Arithmetic operators are represented by uppercase letters, numbers are represented by lowercase letters. You may assume that the length of each expression is less than 10000 characters.

    Output Specification

    For each given expression, print the expression with the equivalent result when using the algorithm with the queue instead of the stack. To make the solution unique, you are not allowed to assume that the operators are associative or commutative.

    Sample Input

    2
    xyPzwIM
    abcABdefgCDEF
    

    Sample Output

    wzyxIPM
    gfCecbDdAaEBF
    

    根据题目意思,运算符是二元的,故想到使用二叉树结构来存放所有元素。
    根据题目意思,读入二叉树的过程是一个后序遍历的过程,故使用题目描述中的栈结构进行建树。
    根据题目意思,输出过程是从树的最下层网上,一层层将树输出。
    考虑到此处使用的是指针,故没有使用STL里面的队列,构造了Queue类,使用了循环队列。


    代码:
    #include <iostream>
    #include <cstdio>
    #include <cstdlib>
    #include <cstring>
    #include <cmath>
    #include <algorithm>
    #include <set>
    #include <map>
    #include <vector>
    #include <queue>
    #include <string>
    #define inf 0x3fffffff
    #define eps 1e-10
    
    using namespace std;
    
    struct node
    {
        char val;
        node *left;
        node *right;
    };
    
    struct Queue
    {
        node *v[10005];
        int top;
        int rear;
        const int N = 10005;
        void Init()
        {
            top = 0;
            rear = 0;
        }
        void Pop()
        {
            top = (top+1) % N;
        }
        node *Front()
        {
            return v[top];
        }
        void Push(node * a)
        {
            v[rear] = a;
            rear = (rear+1) % N;
        }
        bool Empty()
        {
            if (top != rear)
                return 0;
            else
                return 1;
        }
    }q;
    
    node *head, *Stack[10005];
    int top;
    
    node *Create()
    {
        top = 0;
        char ch;
        for (;;)
        {
            ch = getchar();
            if (ch == '
    ')
            {
                return Stack[0];
            }
            if (ch >= 'a' && ch <= 'z')
            {
                node *k;
                k = (node *)malloc(sizeof(node));
                k->val = ch;
                k->left = NULL;
                k->right = NULL;
                Stack[top++] = k;
            }
            else
            {
                node *k;
                k = (node *)malloc(sizeof(node));
                k->val = ch;
                k->left = Stack[top-2];
                k->right = Stack[top-1];
                top -= 2;
                Stack[top++] = k;
            }
        }
    }
    
    void bfs()
    {
        q.Init();
        q.Push(head);
        top = 0;
        while (!q.Empty())
        {
            Stack[top] = q.Front();
            q.Pop();
            if (Stack[top]->left != NULL)
            {
                q.Push(Stack[top]->left);
                q.Push(Stack[top]->right);
            }
            top++;
        }
    }
    
    void Output()
    {
        for (int i = top-1; i >= 0; --i)
            printf("%c", Stack[i]->val);
        printf("
    ");
    }
    
    int main()
    {
        //freopen ("test.txt", "r", stdin);
        int T;
        scanf("%d", &T);
        getchar();
        for (int times = 1; times <= T; ++times)
        {
            head = Create();
            bfs();
            Output();
        }
        return 0;
    }
    
  • 相关阅读:
    winget
    splunk单节点容器部署
    jumpserver容器化部署
    思科acl
    Java springboot-plus
    接口 Postman 上传图片测试
    EF 数据迁移 新
    电商 抓取淘宝分类 包含图片和名称
    思维导图 淘宝上新流程
    功能模块 上传视频 生成视频预览图
  • 原文地址:https://www.cnblogs.com/andyqsmart/p/4162388.html
Copyright © 2011-2022 走看看