c语言 符号配对 20 分,7-17 符号配对 (20分)(附所有测试点提示)

7-17 符号配对 (20分)(附所有测试点提示)

7-17 符号配对 (20分)(附所有测试点提示)

c9221d58d29ac394980ddcc946475e98.png

//栈的基本结构实现(部分)

#include

#include

#include

#include

#include

#include

#pragma warning(disable:4996)

using namespace std;

//函数状态码定义

#define TRUE 1

#define FALSE 0

#define OK 1

#define ERROR 0

#define INFEASIBLE -1

#define OVERFLOW -2

typedef int Status;

#define STACK_INIT_SIZE 100

#define STACKINCREMENT 10

typedef char SElemtype;

typedef struct Sqstack {

SElemtype* base;

SElemtype* top;

int stacksize;

}Sqstack;

//栈的初始化

Status InitStack_Sq(Sqstack& S)

{

S.base = (SElemtype*)malloc(sizeof(SElemtype) * STACK_INIT_SIZE);

if (!S.base) exit(OVERFLOW);

S.top = S.base;

S.stacksize = STACK_INIT_SIZE;

return OK;

}

//求栈长

int Stack_Length(Sqstack S)

{

return S.top - S.base;

}

//判栈空

bool Stack_Empty(Sqstack S) //判栈空

{

return S.top == S.base;

}

//清空栈

Status Stack_Clear(Sqstack& S)

{

S.top = S.base;

return OK;

}

//压栈

Status Push(Sqstack& S, SElemtype e)

{

if ((S.top - S.top) == S.stacksize)

{

S.base = (SElemtype*)realloc(S.base, sizeof(SElemtype) * (S.stacksize + STACKINCREMENT));

if (!S.base)exit(OVERFLOW);

S.top = (S.base + S.stacksize);

S.stacksize += STACKINCREMENT;

}

*S.top++ = e;

return OK;

}

//出栈

Status Pop(Sqstack& S, SElemtype& e)

{

if (S.base == S.top) return ERROR;

e = *(--S.top);

return OK;

}

//遍历栈

Status StackTraverse(Sqstack S, Status(*vist)(SElemtype))

{

SElemtype* p = S.base;

while (p < S.top)

{

if (vist(*p) == ERROR) return ERROR;

++p;

}

return OK;

}

//输出栈元素

Status visit(SElemtype e)

{

cout << e << " ";

return OK;

}

int main()

{

ios::sync_with_stdio(false);

int ok = 1, len;

Sqstack S;

string brackets_in_code, str, wrong_information;

InitStack_Sq(S);

str.clear();

brackets_in_code.clear();

wrong_information.clear();

//读取括号,存入brackets_in_code

while (getline(cin, str))

{

len = str.length();

//if (len == 0 || (len == 1 && str[0] == '.')) break;

//测试点4 : 没有代码,只有一个 "."

if (str == ".") break;

for (int i = 0; i < len; i++)

{

if (str[i] == '(' || str[i] == ')' || str[i] == '[' || str[i] == ']' || str[i] == '{' || str[i] == '}')

brackets_in_code += str[i];

else if (str[i] == '/' && str[i + 1] == '*')

{

brackets_in_code += '

i++;

}

else if (str[i] == '*' && str[i + 1] == '/')

{

brackets_in_code += '>';

i++;

}

}

}

//cout << "#" << brackets_in_code << "#"<< endl;

len = brackets_in_code.length();

for (int i = 0; i < len; i++)

{

char ch1 = brackets_in_code[i], ch2;

if (ch1 == '(' || ch1 == '[' || ch1 == '{' || ch1 == '

{

Push(S, ch1);

continue;

}

else

{

if (Stack_Empty(S))

{

ok = 0;

if (ch1 == '>')

wrong_information = "?-*/";

else

{

wrong_information = "?-";

wrong_information += ch1;

}

break;

}

Pop(S, ch2);

if ((ch2 == '(' && ch1 != ')') || (ch2 == '[' && ch1 != ']') || (ch2 == '{' && ch1 != '}') || (ch2 == ''))

{

ok = 0;

if (ch2 == '

wrong_information = "/*-?";

else

{

wrong_information = ch2;

wrong_information += "-?";

}

break;

}

}

}

//cout << "#" << Stack_Length(S) << "#" << endl;

if (ok == 1 && Stack_Empty(S)) cout << "YES" << endl;

else if (ok == 1 && !Stack_Empty(S))

{

cout << "NO" << endl;

cout << *S.base << "-?" << endl;

}

else

{

cout << "NO" << endl;

cout << wrong_information << endl;

}

}

/*

string str, wrong_information;

char ch;

int len;

int ok = 1;

while (getline(cin, str))

{

if (ok == 0) break;

len = str.length();

//当读到某一行中只有一个句点.和一个回车的时候,标志着输入结束

if (len == 0 || (len == 1 && str[0] == '.')) break;

//访问每一个 括号类符号

for (int i = 0; i < len; i++)

{

//左括号

if (str[i] == '(' || str[i] == '[' || str[i] == '{')

{

ch = str[i];

Push(S, ch);

}

if (str[i] == '/' && str[i+1] == '*')

{

ch = str[i];

Push(S, ch);

i++;

continue;

}

//右括号

if (str[i] == ')' || str[i] == ']' || str[i] == '}')

{

if (Stack_Empty(S))

{

ok = 0;

wrong_information += "?-";

wrong_information += str[i];

break;

}

else

{

Pop(S, ch);

if ((str[i] == ')' && ch != '(') || (str[i] == ']' && ch != '[') || (str[i] == '}' && ch != '{'))

{

wrong_information = ch;

if (ch == '/') wrong_information += '*';

wrong_information += "-?";

}

}

}

else if (str[i] == '*' && str[i + 1] == '/')

{

if (Stack_Empty(S))

{

ok = 0;

wrong_information += "?-";

wrong_information += str[i] + str[i + 1];

break;

}

else

{

Pop(S, ch);

if (ch != '/')

{

wrong_information = ch;

wrong_information += "-?";

}

}

}

}

//cout << "#";

//StackTraverse(S, visit);

//cout << '#' << endl;

}

if (ok == 1 && Stack_Empty(S)) cout << "YES" << endl;

else

{

cout << "NO" << endl;

cout << wrong_information << endl;

}

*/

7-17 符号配对 (20分)(附所有测试点提示)相关教程

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值