#include#include #include // 写一个判断的括号是否匹配的函数int MatchCheck(char a[],int len){ int flag = 0; char s[10000]; int top,i; char temp; // 初始化一个栈 top = 0; for(i=0;i
本文共 281 字,大约阅读时间需要 1 分钟。
#include#include #include // 写一个判断的括号是否匹配的函数int MatchCheck(char a[],int len){ int flag = 0; char s[10000]; int top,i; char temp; // 初始化一个栈 top = 0; for(i=0;i
转载于:https://www.cnblogs.com/minTTremor/p/9087638.html