POJ-2106 Boolean Expressions-!||&计算

本文探讨如何通过编程解决包含复杂布尔运算符的表达式评估问题,详细介绍了输入格式、解析过程及输出规则,旨在提供一种高效的方法来处理此类逻辑问题。
Boolean Expressions
Time Limit: 1000MS Memory Limit: 30000K
Total Submissions: 3679 Accepted: 1107

Description

The objective of the program you are going to produce is to evaluate boolean expressions as the one shown next:
Expression: ( V | V ) & F & ( F | V )

where V is for True, and F is for False. The expressions may include the following operators: ! for not , & for and, | for or , the use of parenthesis for operations grouping is also allowed.

To perform the evaluation of an expression, it will be considered the priority of the operators, the not having the highest, and the or the lowest. The program must yield V or F , as the result for each expression in the input file.

Input

The expressions are of a variable length, although will never exceed 100 symbols. Symbols may be separated by any number of spaces or no spaces at all, therefore, the total length of an expression, as a number of characters, is unknown.

The number of expressions in the input file is variable and will never be greater than 20. Each expression is presented in a new line, as shown below.

Output

For each test expression, print "Expression " followed by its sequence number, ": ", and the resulting value of the corresponding test expression. Separate the output for consecutive test expressions with a new line.

Use the same format as that shown in the sample output shown below.

Sample Input

( V | V ) & F & ( F| V)
!V | V & V & !F & (F | V ) & (!F | F | !V & V)
(F&F|V|!V&!F&!(F|F&V))

Sample Output

Expression 1: F
Expression 2: V
Expression 3: V

Source

México and Central America 2004

#include <iostream>
#include <cstring>
#include <cstdio>
using namespace std;
const int maxn=100+10;
int val[maxn],vtop;
int op[maxn],otop;
void insert(int t)
{
    while(otop&&op[otop-1]==3)
    {
        t=!t;
        --otop;
    }
    val[vtop++]=t;
}
void calc()
{
    int b=val[--vtop];
    int a=val[--vtop];
    int o=op[--otop];
    int c=(a&b);
    if(o==1)c=(a|b);
    insert(c);
}
int main()
{
    int loop=1;
    char c;
    while((c=getchar())!=EOF)
    {
        vtop=otop=0;
        do
        {
            if(c=='(')
            {
                op[otop++]=0;
            }
            else if(c==')')
            {
                while(otop&&op[otop-1]!=0)
                    calc();
                --otop;
                insert(val[--vtop]);
            }
            else if(c=='!')
            {
                op[otop++]=3;
            }
            else if(c=='&')
            {
                while(otop&&op[otop-1]>=2)
                    calc();
                op[otop++]=2;
            }
            else if(c=='|')
            {
                while(otop&&op[otop-1]>=1)
                    calc();
                op[otop++]=1;
            }
            else if(c=='V'||c=='F')
            {
                insert(c=='V'?1:0);
            }
        }
        while((c=getchar())!='\n'&&c!=EOF);
        while(otop)calc();
        printf("Expression %d: %c\n",loop++,(val[0]?'V':'F'));
    }
    return 0;
}


评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值