数据结构 3.2章:括号匹配(c)

栈是一种常用的数据结构,可以用来实现括号匹配的分析。

括号匹配的问题可以简单描述为,在一串字符串中,括号是否能够正确匹配。具体地说,需要判断字符串中的每一个左括号是否都有与之对应的右括号,且左右括号的顺序应该符合基本的语法规则(即不允许跨越其他括号或其他字符)。

下面是基于栈的括号匹配分析算法:

(1) 遍历字符串,当遇到一个左括号时,将其压入栈中。

(2) 当遇到一个右括号时,弹出栈顶元素。检查该栈顶元素是否与当前的右括号匹配。如果匹配,则继续遍历下一个字符;如果不匹配,则返回false。

(3) 如果遍历完字符串后,栈为空,则说明括号匹配正确;否则,说明括号不匹配,返回false。

以上算法的核心思路是,将左括号压入栈中,每次遇到一个右括号,就弹出栈顶元素并检查其与当前右括号是否匹配。由于栈具有后进先出的特性,因此栈顶元素都是最近压入的未匹配的左括号,与当前的右括号最容易进行匹配。

基于栈的括号匹配分析算法具有时间复杂度O(n)和空间复杂度O(n),且代码实现简单。

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

/**
 * Linear stack of integers. The key is data.
 */
typedef struct CharStack 
{
    int top;
    int data[STACK_MAX_SIZE]; //The maximum length is fixed.
}CharStack, *CharStackPtr;



void outputStack(CharStackPtr paraStack);
CharStackPtr charStackInit(void);
void push(CharStackPtr paraStackPtr, int paraValue);
char pop(CharStackPtr paraStackPtr);
void pushPopTest(void);
bool bracketMatching(char* paraString, int paraLength);
void bracketMatchingTest(void);

/**
 The entrance.
 */
void main() 
{
	// pushPopTest();
	bracketMatchingTest();
}// Of main


/**
 * Output the stack.
 */
void outputStack(CharStackPtr paraStack) 
{
	int i;
    for (i = 0; i <= paraStack->top; i ++) 
	{
        printf("%c ", paraStack->data[i]);
    }// Of for 
    printf("\r\n");
}// Of outputStack()

/**
 * Initialize an empty char stack. No error checking for this function.
 * @param paraStackPtr The pointer to the stack. It must be a pointer to change the stack.
 * @param paraValues An int array storing all elements.
 */
CharStackPtr charStackInit(void) 
{
	CharStackPtr resultPtr = (CharStackPtr)malloc(sizeof(struct CharStack));
	resultPtr->top = -1;

	return resultPtr;
}//Of charStackInit

/**
 * Push an element to the stack.
 * @param paraValue The value to be pushed.
 */
void push(CharStackPtr paraStackPtr, int paraValue) 
{
    // Step 1. Space check.
    if (paraStackPtr->top >= STACK_MAX_SIZE - 1) 
	{
        printf("Cannot push element: stack full.\n");
        return;
    }//Of if

    // Step 2. Update the top.
	paraStackPtr->top ++;

	// Step 3. Push element.
    paraStackPtr->data[paraStackPtr->top] = paraValue;
}// Of push

/**
 * Pop an element from the stack.
 * @return The popped value.
 */
char pop(CharStackPtr paraStackPtr) 
{
    // Step 1. Space check.
    if (paraStackPtr->top < 0) 
	{
        printf("Cannot pop element: stack empty.\n");
        return '\0';
    }//Of if

    // Step 2. Update the top.
	paraStackPtr->top --;

	// Step 3. Push element.
    return paraStackPtr->data[paraStackPtr->top + 1];
}// Of pop

/**
 * Test the push function.
 */
void pushPopTest(void) 
{
    printf("---- pushPopTest begins. ----\n");
    char ch;
    
	// Initialize.
    CharStackPtr tempStack = charStackInit();
    printf("After initialization, the stack is: ");
	outputStack(tempStack);

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

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

    printf("---- pushPopTest ends. ----\n");
}// Of pushPopTest

/**
 * Is the bracket matching?
 * 
 * @param paraString The given expression.
 * @return Match or not.
 */
bool bracketMatching(char* paraString, int paraLength) 
{
	// Step 1. Initialize the stack through pushing a '#' at the bottom.
    CharStackPtr tempStack = charStackInit();
	push(tempStack, '#');
	char tempChar, tempPopedChar;

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

		switch (tempChar) 
		{
		case '(':
		case '[':
		case '{':
			push(tempStack, tempChar);
			break;
		case ')':
			tempPopedChar = pop(tempStack);
			if (tempPopedChar != '(') 
			{
				return false;
			} // Of if
			break;
		case ']':
			tempPopedChar = pop(tempStack);
			if (tempPopedChar != '[') 
			{
				return false;
			} // Of if
			break;
		case '}':
			tempPopedChar = pop(tempStack);
			if (tempPopedChar != '{') 
			{
				return false;
			} // Of if
			break;
		default:
			// Do nothing.
			break;
		}// Of switch
	} // Of for i

	tempPopedChar = pop(tempStack);
	if (tempPopedChar != '#') 
	{
		return false;
	} // Of if

	return true;
}// Of bracketMatching

/**
 * Unit test.
 */
void bracketMatchingTest(void) 
{
	char* tempExpression = "[2 + (1 - 3)] * 4";
	bool tempMatch = bracketMatching(tempExpression, 17);
	printf("Is the expression '%s' bracket matching? %d\n", tempExpression, tempMatch);


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

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

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


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



在这里插入图片描述

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Free Ever

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值