-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValidParanthesis.java
More file actions
86 lines (59 loc) · 1.92 KB
/
Copy pathValidParanthesis.java
File metadata and controls
86 lines (59 loc) · 1.92 KB
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
class Solution {
// create a stack class
static class Stack{
int top = -1;
char ch[] = new char[7002];
public void push(char c){
if(top==7001){
}
else{
// adding character to the stack
ch[++top] = c;
}
}
public char pop(){
if(top==-1){
return '\0';
}
else{
char element = ch[top];
top--;
return element;
}
}
public boolean isEmpty(){
return (top==-1)?true:false;
}
}
public static boolean matchingpair(char c1,char c2){
if(c1 == '{' && c2=='}')
return true;
if(c1 == '(' && c2==')')
return true;
if(c1 == '[' && c2==']')
return true;
return false;
}
public boolean isValid(String s) {
Stack stack = new Stack();
for(int i=0;i<s.length();i++){
if(s.charAt(i) == '{'|| s.charAt(i) == '['||s.charAt(i) == '(' ){
stack.push(s.charAt(i));
}
if(s.charAt(i) == '}'|| s.charAt(i) == ']'||s.charAt(i) == ')' ){
if(stack.isEmpty()){
return false;
}
else if(!matchingpair(stack.pop(),s.charAt(i))){
return false;
}
}
}
if(stack.isEmpty()){
return true;
}
else{
return false;
}
}
}