admin 管理员组

文章数量: 887021


2024年2月24日发(作者:适合做ppt的高级简单背景图)

括号匹配检验

利用栈编写满足下列要求的括号匹配检验程序:假设表达式中允许包含两种括号:圆括号和方括号,其嵌套的顺序随意,即([]())或[([][])]等为正确的格式,[(]或([())或(()])均为不正确的格式。输入一个包含上述括号的表达式,检验括号是否配对。

Input

第一行:输入一个包含圆括号或方括号、不超过80个字符的表达式串。

Output

第一行:若输入表达式括号匹配,输出"matching"; 若不匹配,输出具体信息:"isn't matched

pairs", 或"lack of left parenthesis"或"lack of right parenthesis"

typedef char SElemType;

#include"malloc.h"

#include"stdio.h"

#include"math.h"

#include"process.h" // exit()

#define OK 1

#define ERROR 0

#define TRUE 1

#define FALSE 0

typedef int Status; // Status是函数的类型,其值是函数结果状态代码,

如OK等

#define STACK_INIT_SIZE 10 // 存储空间初始分配量

#define STACKINCREMENT 2 // 存储空间分配增量

struct SqStack

{

SElemType *base; // 在栈构造之前和销毁之后,base的值为NULL

SElemType *top; // 栈顶指针

int stacksize; // 当前已分配的存储空间,以元素为单位

}; // 顺序栈

Status InitStack(SqStack &S)

{

*)malloc(STACK_INIT_SIZE*sizeof(SElemType));

=;

if(!) return ERROR;

ize=STACK_INIT_SIZE;

return OK;

}

Status StackEmpty(SqStack S)

{if(==) return TRUE;

else return FALSE;

}

=(SElemType

Status Push(SqStack &S,SElemType e)

{ if(>=ize) {

=(SElemType

*)realloc(,(STACK_INIT_SIZE+ize)*sizeof(SElemType));

if(!) return ERROR;

=+ize;

ize=ize+STACK_INIT_SIZE;}

*=e;

++;

return OK;

}

Status Pop(SqStack &S,SElemType &e)

{ if(==) return ERROR;

e=*--;

return OK;

}

void check()

{ // 对于输入的任意一个字符串,检验括号是否配对

SqStack s;

SElemType ch[80],*p,e;

if(InitStack(s)) // 初始化栈成功

{

//printf("请输入表达式n");

scanf("%s",ch);

p=ch;

while(*p) // 没到串尾

switch(*p)

{

case '(':

case '[':Push(s,*p);p++;

break; // 左括号入栈,且p++

case ')':

case ']':if(!StackEmpty(s)) // 栈不空

{

Pop(s,e); // 弹出栈顶元素

if(*p==')'&&e!='('||*p==']'&&e!='[')

// 弹出的栈顶元素与*p不配对

{

printf("isn't matched pairsn");

exit(ERROR);

}

else

{

p++;

break; // 跳出switch语句

}

}

else // 栈空

{

printf("lack of left parenthesisn");

exit(ERROR);

}

default: p++; // 其它字符不处理,指针向后移

}

if(StackEmpty(s)) // 字符串结束时栈空

printf("matchingn");

else

printf("lack of right parenthesisn");

}

}

void main()

{

check();

}


本文标签: 括号 检验 表达式