数据结构-栈的应用-括号匹配

代码:

#include<stdio.h>
#include<stdbool.h>
#include<malloc.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]);
    }//of for i
    printf("\r\n");
}//of outputStack
 
/**
 * 初始化一个空栈
 */
CharStackPtr charStackInit(){
    CharStackPtr resultPtr = (CharStackPtr)malloc(sizeof(struct CharStack));
    resultPtr->top = -1;
    
    return resultPtr;
} //of charStackPtr
 
/**
 * 压栈
 */
void push(CharStackPtr paraStackPtr, int paraValue){
    //step 1. 空间检查
    if(paraStackPtr->top >= STACK_MAX_SIZE - 1){
        printf("Cannot push element: stack full.\r\n");
        return ;
    } //of if
    
    //step 2. update the top
    paraStackPtr->top ++;
    
    //step 3. push element
    paraStackPtr->data[paraStackPtr->top] = paraValue;
} //of push
 
/**
 * 弹栈
 */
char pop(CharStackPtr paraStackPtr){
    //step 1. 空间检查
    if(paraStackPtr->top < 0){
        printf("Cannot pop element: stack empty.\r\n");
        return '\0';
    } //of for i
    
    //step 2. update the top
    paraStackPtr->top --;
    
    //step 3. pop element
    return paraStackPtr->data[paraStackPtr->top + 1];
} //of pop
 
/**
 * test the push and pop functions
 */
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);
    }//of for i
    
    //pop
    for(int i = 0; i < 3; i ++){
        ch = pop(tempStack);
        printf("Pop %c.\r\n",ch);
        outputStack(tempStack);
    }//of for i
    
    printf("---- pushPopTest ends. ----\r\n");
}//of pushPopTest
 
/** 
 *括号匹配
 */
bool bracketMatching(char* paraString, int paraLength){
    //step 1. 初始化栈并将'#'作为基础
    CharStackPtr tempStack = charStackInit();
    push(tempStack, '#');
    char tempChar, tempPopedChar;
    
    //step 2. process the string
    for(int 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(){
    char* tempExpression = "[2 + (1 - 3)] * 4";
    bool tempMatch = bracketMatching(tempExpression, 17);
    printf("Is the expression '%s' brackt matching? %d \r\n",tempExpression, tempMatch);
    
    tempExpression = "( ) )";
    tempMatch = bracketMatching(tempExpression, 6);
    printf("Is the expression '%s' brackt matching? %d \r\n",tempExpression,tempMatch);
    
    tempExpression = "()()(())";
    tempMatch = bracketMatching(tempExpression, 8);
    printf("Is the expression '%s' brackt matching? %d \r\n",tempExpression,tempMatch);
    
    tempExpression = "({}[])";
    tempMatch = bracketMatching(tempExpression, 6);
    printf("Is the expression '%s' brackt matching? %d \r\n",tempExpression,tempMatch);
    
    tempExpression = ")(";
    tempMatch = bracketMatching(tempExpression, 2);
    printf("Is the expression '%s' brackt matching? %d \r\n",tempExpression,tempMatch);
}//of bracketMatchingTest
 
/**
 * The entrance
 */
int main(){
    //pushPopTest();
    bracketMatchingTest();
    return 0; 
}//of main

运行结果:

1fba4972a40a458ca41f300475a7fe7d.jpg

 总结:

栈(Stack)是一种后进先出(LIFO)的数据结构,非常适合用来解决括号匹配问题。括号匹配通常用于检查文本中的括号(如小括号"()"、中括号"[]"、大括号"{}"以及尖括号"<>"等)是否成对出现且顺序正确。

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值