#define STACK_SIZE 10000
struct stack{
char a[STACK_SIZE];
int top;
};
void push(struct stack *s, char c)
{
if(s->top == STACK_SIZE-1)
return;
else{
s->top++;
s->a[s->top] = c;
}
}
char pop(struct stack *s)
{
if(s->top == -1)
return -1;
else{
return s->a[s->top--];
}
}
bool isValid(char* s) {
struct stack stack;
stack.top = -1;
char c;
int tag = 0;
while(*s != '\0'){
printf("%c tag = %d\n", *s, tag);
if(*s == '(' || *s == '{' || *s == '['){
push(&stack, *s);
s++;
tag++;
}
else if(*s == ')' || *s == '}' || *s == ']'){
c = pop(&stack);
printf("c = %c\n", c);
if(c == '(' && *s == ')')
tag--,s++;
else if(c == '{' && *s == '}')
tag--,s++;
else if(c == '[' && *s == ']')
tag--,s++;
else
return false;
}else
s++;
}
if(tag == 0)
return true;
else
return false;
}
20. Valid Parentheses
最后編輯于 :
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
- 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
- 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發上,一...
- 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側響起,我...
推薦閱讀更多精彩內容
- Given a string containing just the characters '(', ')', '...
- Problem:### Given a string containing just the characters...
- 題目 Given a string containing just the characters '(', ')'...