-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBalancedBrakets.java
46 lines (34 loc) · 1.02 KB
/
BalancedBrakets.java
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
/*Given an expression string exp , write a program to examine whether the
pairs and the orders of “{“,”}”,”(“,”)”,”[“,”]” are correct in exp.*/
class Solution{
public static void main (String[] args) {
/*
{[()]} -- true
{[(])} -- false
{{[[(())]]}} -- true */
String s1 = "({{[[(())]]}}";
System.out.println(isBalanced(s1));
}
private static boolean isBalanced(String s){
char[] arr = s.toCharArray();
Stack<Character> stack = new Stack<Character>();
for(int i = 0 ; i < arr.length ; i++){
if((arr[i] == '(' )||
(arr[i] == '[' )||
(arr[i] == '{')){
stack.push(arr[i]);
} else {
char popped = stack.pop();
if((arr[i] == ')' && popped != '(')
|| (arr[i] == ']' && popped != '[')
|| (arr[i] == '}' && popped != '{')){
return false;
}
}
}
if(!stack.isEmpty()){
return false;
}
return true;
}
}