数据结构实验之栈与队列四:括号匹配
Time Limit: 1000 ms Memory Limit: 65536 KiB
Problem Description
给你一串字符,不超过50个字符,可能包括括号、数字、字母、标点符号、空格,你的任务是检查这一串字符中的( ) ,[ ],{ }是否匹配。
Input
输入数据有多组,处理到文件结束。
Output
如果匹配就输出“yes”,不匹配输出“no”
Sample Input
sin(20+10)
{[}]
Sample Output
yes
no
Hint
Source
ma6174
注意:有一对不匹配就输出no
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
char a[55],b[55];
int main()
{
int i;
while(gets(a))
{
int top=0;
for(i=0; i<strlen(a); i++)
{
if(a[i]=='('||a[i]=='['||a[i]=='{')
b[++top]=a[i];
if(a[i]==')'||a[i]==']'||a[i]=='}')
{
if((b[top] == '(' && a[i] == ')') || (b[top] == '[' && a[i] == ']') || (b[top] == '{' && a[i] == '}'))
top--;
else
break;
}
}
if(top==0&&i==strlen(a))
printf("yes\n");
else
printf("no\n");
}
return 0;
}
括号匹配算法解析
本文介绍了一种基于栈数据结构的括号匹配算法,用于检查包含括号、数字、字母等字符的字符串中括号是否正确配对。通过实例演示了算法的实现过程,包括输入字符串的处理、括号的匹配判断及输出结果。
1672

被折叠的 条评论
为什么被折叠?



