数据结构-括号匹配

#include <stdio.h>
#include <stdlib.h>
#define STACK_MAX_SIZE 10

//定义一个栈结构
typedef struct CharStack {
	int top;
	char data[STACK_MAX_SIZE];
}*CharStackPtr;

//输出函数
void outputStack(CharStackPtr paraStack) {
	for (int i = 0; i <= paraStack->top; i++) {
		printf("%c ", paraStack->data[i]);
	}
	printf("\r\n");
}

//初始化一个空栈
CharStackPtr charStackInit() {
	CharStackPtr resultPtr = new struct CharStack;
	resultPtr->top = -1;
	return resultPtr;
}

//入栈函数
void push(CharStackPtr paraStackPtr, int paraValue) {
	// step1.Sapce check;
	if (paraStackPtr->top + 1 == STACK_MAX_SIZE) {
		return;
	}

	// step2.Update the top
		paraStackPtr->top++;

	// step3.Push element
		paraStackPtr->data[paraStackPtr->top] = paraValue;
}

//出栈函数
char pop(CharStackPtr paraStackPtr) {
	/* step1.Space check.*/
		if (paraStackPtr->top < 0) {
			printf("Cannot pop element:stack is empty.\r\n");
			return '\0';
		}

	// step2.Update the top.
		paraStackPtr->top--;

	// step3.Pop element
		return paraStackPtr->data[paraStackPtr->top + 1];
}

//测试函数
void PushPopTest() {
	printf("----PushPopTest begins.----\r\n");
	char ch;

	//Initialize.
	CharStackPtr tempStack = charStackInit();
	printf("After initialization,the stack is: ");
	outputStack(tempStack);

	//Push.
	for (ch = 'a'; ch < 'm'; ch++) {
		printf("Pushing %c.\r\n", ch);
		push(tempStack, ch);
		outputStack(tempStack);
	}

	//Pop.
	for (int i = 0; i < 3; i++) {
		ch = pop(tempStack);
		printf("Pop %c.\r\n", ch);
		outputStack(tempStack);
	}

	printf("----PushPopTest ends.----\r\n");
}

bool bracketMatching(char* paraString, int paraLength) {
	/* step1.Initialize the stack through pushing a '#' at the bottom.*/
		//初始化一个只带有'#'的栈
		CharStackPtr tempStack = charStackInit();
	push(tempStack, '#');
	char tempChar, tempPopChar;

	/* step2.Process the string.*/
		for (int i = 0; i < paraLength; i++) {
			tempChar = paraString[i];

			switch (tempChar)
			{
			case'(':
			case'[':
			case'{':
				push(tempStack, tempChar);
				break;

			case')':
				tempPopChar = pop(tempStack);
				if (tempPopChar != '(') {
					return false;
				}
				break;

			case']':
				tempPopChar = pop(tempStack);
				if (tempPopChar != '[') {
					return false;
				}
				break;

			case'}':
				tempPopChar = pop(tempStack);
				if (tempPopChar != '{') {
					return false;
				}
				break;
			default:
				break;
			}
		}

	tempPopChar = pop(tempStack);
	if (tempPopChar != '#') {
		return false;
	}
	return true;
}

int Lengthcheck(char* paratempExpression) {
	int i = 0;
	while (paratempExpression != (char*)'\0')
	{
		i++;
	}
	return i;
}

void bracketMatchingTest() {

	char* tempExpression = (char*)"[2 + (1 - 3)] * 4";

	bool tempMatch = bracketMatching(tempExpression, 17);
	printf("Is the expression '%s' bracket matching? %d \r\n", tempExpression, tempMatch);

	tempExpression = (char*)"( ) )";
	tempMatch = bracketMatching(tempExpression, 6);
	printf("Is the expression '%s' bracket matching? %d \r\n", tempExpression, tempMatch);

	tempExpression = (char*)"()()(())";

	tempMatch = bracketMatching(tempExpression, 8);
	printf("Is the expression '%s' bracket matching? %d \r\n", tempExpression, tempMatch);

	tempExpression = (char*)"({}[])";

	tempMatch = bracketMatching(tempExpression, 6);
	printf("Is the expression '%s' bracket matching? %d \r\n", tempExpression, tempMatch);

	tempExpression = (char*)")(";

	tempMatch = bracketMatching(tempExpression, 2);
	printf("Is the expression '%s' bracket matching? %d \r\n", tempExpression, tempMatch);

}

int main() {
	bracketMatchingTest();
	return 0;
}

括号匹配是栈结构的一个很好的体现,在第一个括号进栈时,会自动记住该括号,若下一个进栈的括号与之匹配,则一起弹栈,若不匹配,则优先记住下一个类型的括号,优先级高于前一个括号,依次类推,直到最后一个括号进栈,若最后为空栈,则所有括号全部完成匹配反之则不匹配。

运行结果:

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值