-
Notifications
You must be signed in to change notification settings - Fork 0
/
20. Valid Parentheses.c
90 lines (89 loc) · 2.73 KB
/
20. Valid Parentheses.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
bool isValid(char* s) {
int stack[1000000]={0}; // stack 空間
int count=0;
if (*s=='\0'){ // 空也為真
return 1;
}else{
while (*s){
if (*s=='('||*s=='['||*s=='{'){ // 如果為左半邊,放進堆疊
stack[count]+=*s;
count++; // 堆疊計數加1
}else{
if (*s==')'){
if (count!=0&&stack[count-1]=='('){ // 如果與上一個push,相同就將它成對移出堆疊
stack[count-1]=0;
count--;
}else{
return 0; // 不同就直接return 0
}
}else if (*s==']'){
if (count!=0&&stack[count-1]=='['){
stack[count-1]=0;
count--;
}else{
return 0;
}
}else if (*s=='}'){
if (count!=0&&stack[count-1]=='{'){
stack[count-1]=0;
count--;
}else{
return 0;
}
}
}
s++;
}
if (count==0){ // 全部成對,計數器應為0
return 1;
}else{ // 有任何空閒者為假
return 0;
}
}
}
/** the faster
bool isValid(char* s) {
int i=strlen(s);
char *stack=calloc(sizeof(char),i);
int count=0;
if (*s=='\0'){
return 1;
}else{
while (*s){
if (*s=='('||*s=='['||*s=='{'){
stack[count]+=*s;
count++;
}else{
if (*s==')'){
if (count!=0&&stack[count-1]=='('){
stack[count-1]=0;
count--;
}else{
return 0;
}
}else if (*s==']'){
if (count!=0&&stack[count-1]=='['){
stack[count-1]=0;
count--;
}else{
return 0;
}
}else if (*s=='}'){
if (count!=0&&stack[count-1]=='{'){
stack[count-1]=0;
count--;
}else{
return 0;
}
}
}
s++;
}
if (count==0){
return 1;
}else{
return 0;
}
}
}
*/