-
Notifications
You must be signed in to change notification settings - Fork 1k
/
BalancedParenthesis.java
62 lines (50 loc) · 1.43 KB
/
BalancedParenthesis.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
/*
Check for balanced parenthesis
==============================
Given an expression containing parenthesis, check if it is well-formed or balanced.
Example of balanced parenthesis are: (), ((())), (a+b), (a/b)*(b/a)
*/
import java.util.*;
import java.io.*;
public class BalancedParenthesis {
private static boolean isBalanced(String str) {
// Size of the string
int n = str.length();
// Stack to store open parenthesis
Stack<Integer> s = new Stack<Integer>();
// Open parenthesis -> 1
// Loop through characters in the string
for (int i = 0; i < n; i++) {
// Open parenthesis is always pushed into the stack
if (str.charAt(i) == '(') {
s.push(1);
} else if (str.charAt(i) == ')') {
// Closed parenthesis encountered must be balanced by an open parenthesis already
// present in the stack
if (!s.empty())
// Stack contains open parenthesis, one of which has been balanced
// Pop one parenthesis out
s.pop();
else
// Stack contains no open parenthesis. So closed parenthesis cannot be balanced
return false;
}
}
// Check if we have open parenthesis remaining
return (s.size() == 0);
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
System.out.println((isBalanced(str) ? "YES" : "NO"));
}
}
/*
Input:
((a+b)+(c-d+f))
Output:
YES
Application: Stack data structure
Time Complexity: O(n)
Space Complexity: O(n)
*/