-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Solution.java
31 lines (27 loc) · 1.03 KB
/
Solution.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
// github.com/RodneyShag
// ArrayDeque is "likely to be faster than Stack when used as a stack" - Java documentation
// Time Complexity: O(n)
// Space Complexity: O(n)
/* Create HashMap to match opening brackets with closing brackets */
static String isBalanced(String expression) {
HashMap<Character, Character> map = new HashMap();
map.put('(', ')');
map.put('[', ']');
map.put('{', '}');
return isBalanced(expression, map) ? "YES" : "NO";
}
private static boolean isBalanced(String expression, HashMap<Character, Character> map) {
if ((expression.length() % 2) != 0) {
return false; // odd length Strings are not balanced
}
ArrayDeque<Character> deque = new ArrayDeque(); // use deque as a stack
for (int i = 0; i < expression.length(); i++) {
Character ch = expression.charAt(i);
if (map.containsKey(ch)) {
deque.push(ch);
} else if (deque.isEmpty() || ch != map.get(deque.pop())) {
return false;
}
}
return deque.isEmpty();
}