码迷,mamicode.com
首页 > 其他好文 > 详细

表达式括号匹配

时间:2018-09-27 14:19:20      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:长度   dig   code   左右   --   namespace   查表   scanf   表达式   

题目描述

假设一个表达式有英文字母(小写)、运算符(+,—,*,/)和左右小(圆)括号构成,以“@”作为表达式的结束符。请编写一个程序检查表达式中的左右圆括号是否匹配,若匹配,则返回“YES”;否则返回“NO”。表达式长度小于255,左圆括号少于20个。

AC代码

#include <bits/stdc++.h>

using namespace std;

int top=0;

inline int read() {
    int w=0,x=0;char ch=0;
    while (!isdigit(ch)) {w|=ch=='-';ch=getchar();}
    while (isdigit(ch)) {x=(x<<1)+(x<<3)+(ch^48);ch=getchar();}
    return w?-x:x;
}

int main() {
    int ch;
    while (ch!='@') {
        scanf("%c",&ch); 
        if (ch=='(') top++;
        if (ch==')') {
            if (top>0) --top;
            else {
                printf("NO\n");
                return 0;
            }
        }
    }
    if (top!=0) printf("NO\n");
    else printf("YES\n");
    return 0;
}

表达式括号匹配

标签:长度   dig   code   左右   --   namespace   查表   scanf   表达式   

原文地址:https://www.cnblogs.com/Dawn-Star/p/9712463.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!