摘要:
括号配对题 判断(){}[]的出现是否匹配 用Stack实现#include#include using namespace std;typedef int Status;const int TRUE=1;const int FALSE=0;const int OK=1;const int ERROR=0;const int INFEASIBLE=-1;const int overflow=-2;const int STACK_INIT_SIZE=100;const int STACKINCREMENT=10;typedef struct{ char orinal; char ma... 阅读全文