-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathBracketsBalancedOrNot.java
73 lines (73 loc) · 1.86 KB
/
BracketsBalancedOrNot.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
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
import java.util.*;
public class BracketsBalancedOrNot
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
String expression = in.nextLine();
in.close();
if(BalancedOrNot(expression))
{
System.out.println("BRACKET BALANCED");
}
else
{
System.out.println("BRACKET NOT BALANCED");
}
}
private static char reverseBracket(char ch)
{
switch(ch)
{
case ')':
return '(';
case ']':
return '[';
case '}':
return '{';
default:
return '0';
}
}
//this method will throw empty stack exception
private static boolean BalancedOrNot(String expression) throws EmptyStackException
{
Stack<Character> S = new Stack<Character>();
try
{
for(int i=0;i<expression.length();i++)
{
char ch = expression.charAt(i);
if(ch=='(' || ch=='[' || ch=='{')
{
S.push(ch);
}
else if(ch==')' || ch==']' || ch=='}')
{
char rev = reverseBracket(ch);
if(S.empty())
{
throw new EmptyStackException();
}
if(rev == S.peek())
{
S.pop();
}
else
{
return false;
}
}
}
if(S.empty())
{
return true;
}
}
catch(Exception e)
{
System.out.println("STACK IS EMPTY");
}
return false;
}
}