栈的应用-括号匹配问题
摘要:
#include<iostream>using namespace std;#define MaxSize 10 typedef struct{ char data[MaxSize]; int top;}SqStack;void InitStack(SqStack& S);bool IsEmpty( 阅读全文
posted @ 2023-02-08 19:32 浪訫 阅读(15) 评论(0) 推荐(0) 编辑