括号匹配
给定一个只包括 ‘(’,’)’,’{’,’}’,’[’,’]’ 的字符串,判断字符串是否有效。
1.有效字符串需满足: 左括号必须用相同类型的右括号闭合。
2. 左括号必须以正确的顺序闭合。
注意空字符串可被认为是有效字符串。
示例1:
输入: "()"
输出: true
示例2:
输入: "()[]{}"
输出: true
示例3:
输入: "(]"
输出: false
示例4:
输入: "([)]"
输出: false
typedef int type;
typedef struct Stack {
type* array;
size_t size;
size_t capacity;
}Stack;
//栈初始化
void StackInit(Stack* sl, size_t n) {
sl->array = (type*)malloc(sizeof(type) * n);
sl->capacity = n;
sl->size = 0;
}
//入栈
void StackPush(Stack* sl, type x) {
if (sl->size == sl->capacity) {
sl->capacity *=</