C语言 —— 括号配对问题(不使用栈)
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int main()
{
int n;
char str[10000];
void deal( char str[]);
scanf(“%d”,&n);
while(n–)
{
scanf(“%s”,str);
deal( str);
}
}
void deal( char str[])
{
int len = strlen( str);
int i,j,n,flag;
if( len%2 != 0 || str[0] == ‘)’ || str[0] == ‘]’ )
{
printf(“No
”);
}
else
{
for( i = 0; i < len; i++)
{
if( str[i] == ‘)’ || str[i] == ‘]’)
{
for( j = i-1; j > -1; j–)
{
if( str[j] == ‘0’ )
continue;
if( (int)(str[i] – str[j]) != 1 && (int)(str[i] – str[j]) != 2)
{
printf(“No
”);
return;
}
else
{
str[i] = str[j] = ‘0’;
break;
}
}
}
}
if( str[ len-1] == ‘0’ )
printf(“Yes
”);
}
}
2024最新激活全家桶教程,稳定运行到2099年,请移步至置顶文章:https://sigusoft.com/99576.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。 文章由激活谷谷主-小谷整理,转载请注明出处:https://sigusoft.com/92594.html