-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValidParentheses.java
More file actions
41 lines (39 loc) · 1.01 KB
/
Copy pathValidParentheses.java
File metadata and controls
41 lines (39 loc) · 1.01 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
package Self_Learning.Stack;
import java.util.Scanner;
import java.util.Stack;
public class ValidParentheses {
public static boolean Valid(String s){
if(s==null){
return false;
}
Stack<Character> stack=new Stack<>();
for(char ch:s.toCharArray()){
if(ch=='('){
stack.push(')');
}
else if(ch=='['){
stack.push(']');
}
else if(ch=='{'){
stack.push('}');
}
else{
if(stack.isEmpty()){
return false;
}
char top=stack.pop();
if(ch!=top){
return false;
}
}
}
return stack.isEmpty();
}
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
String str=sc.next();
boolean isValid=Valid(str);
System.out.println(isValid);
sc.close();
}
}