数据结构实验之栈与队列四:括号匹配
Time Limit: 1000MS
Memory Limit: 65536KB
Problem Description
给你一串字符,不超过50个字符,可能包括括号、数字、字母、标点符号、空格,你的任务是检查这一串字符中的( ) ,[ ],{ }是否匹配。
Input
输入数据有多组,处理到文件结束。
Output
如果匹配就输出“yes”,不匹配输出“no”
Example Input
sin(20+10) {[}]
Example Output
yes no
Hint
Author
ma6174
#include <cstdio>
#include <string.h>
#include <algorithm>
using namespace std;
int main()
{
char s[1001],stacks[1001];
while(gets(s)!=NULL)
{
int i,top=0;
for(i=0; s[i]!='\0'; i++)//注意判断条件,不要用i<字符串长度
{
if(s[i]=='{'||s[i]=='('||s[i]=='[')
stacks[++top]=s[i];
else if(s[i]=='}'||s[i]==')'||s[i]==']')//不要用else作判断,用else if
{
if((stacks[top]=='{'&&s[i]=='}')||(stacks[top]=='['&&s[i]==']')||(stacks[top]=='('&&s[i]==')'))
top--;
else
break;
}
}
if(top==0&&s[i]=='\0')//第二个条件必须满足,因为可能出现匹配完一对括号之后又单独碰到一个括号的情况
printf("yes\n");
else
printf("no\n");
}
return 0;
}