-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProblemSet2B.java
307 lines (256 loc) · 7.8 KB
/
ProblemSet2B.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
package ProblemSets;
import java.sql.Struct;
import java.util.ArrayList;
import java.util.List;
public class ProblemSet2B {
public static void main(String[] args) {
System.out.println(isOpenBracket('(')); // return true
System.out.println(isOpenBracket('a')); // return false
System.out.println(isCloseBracket(']')); //return true
System.out.println(isCloseBracket('a')); // return false
System.out.println(isMatchBracket('(', ')')); // return true
System.out.println(isMatchBracket('a', 'a')); // return false
System.out.println(isBalancedBracket("()[]()")); // return true
System.out.println(isBalancedBracket("([]())")); // return true
}
// Question 3: isBalancedBrackets()
// todo: a static method getBalancedBracket() where it takes in a String that contains
// open brackets, close brackets and characters which are letters of alphabets.
// Assume the string is max 20 characters.
// If the brackets in the string are balanced, return true, else return false.
// todo: static helper methods
// isOpenBracket method
public static boolean isOpenBracket(char c) {
String brackets = "({[";
if (brackets.contains(String.valueOf(c))) {
return true;
}
return false;
}
// isCloseBracket method
public static boolean isCloseBracket(char c) {
String brackets = ")]}";
if (brackets.contains(String.valueOf(c))) {
return true;
}
return false;
}
// isMatchBracket method
public static boolean isMatchBracket(char c1, char c2) {
return (c1 == '(' && c2 == ')') || (c1 == '[' && c2 == ']') || (c1 == '{' && c2 == '}');
}
// isBalancedBracket method
public static boolean isBalancedBracket(String string) {
StackImpl<Character> stack = new StackImpl<>();
for (int i = 0; i < string.length(); i++) {
char c = string.charAt(i);
if (isOpenBracket(c)) {
stack.push(c);
} else if (isCloseBracket(c)) {
if (stack.isEmpty()) {
return false;
}
char d = stack.pop();
if (isMatchBracket(d, c)) {
continue;
} else {
return false;
}
}
}
return (stack.isEmpty());
}
}
// Question 1: Fibonacci Series
class Fibonacci {
// todo: initializing required variables
public int max;
public int calls;
int[] data;
// constructor
public Fibonacci(int max) {
this.max = max;
data = new int[max];
data[0] = 0;
data[1] = 1;
}
// getFibonacciNumber method
public int getFibonacciNumber(int n) {
// todo: instantiate calls variable to 0. Keep track of the # of times getFibRecursive is called
calls = 0;
if (n > max || n == max) {
return -1;
}
return fibRecursive(n);
}
// fibRecursive method
private int fibRecursive(int n) {
calls += 1;
if (n == 0 || n == 1) {
return data[n];
} else {
if (data[n] != 0) {
return data[n];
}
data[n] = fibRecursive(n - 1) + fibRecursive(n - 2);
}
return data[n];
}
// getCalls method
public int getCalls() {
return calls;
}
// getData method
public int[] getData() {
return data;
}
}
// Question 2: Custom Stack
interface CustomStack<T> {
void push(T t);
T pop();
int size();
T peek();
boolean isEmpty();
}
class StackImpl<T> implements CustomStack<T> {
private List<T> myList = new ArrayList<T>();
public StackImpl() {}
// push method
// todo: adds element t to the top of the stack
@Override
public void push(T value) {
myList.add(value);
}
// pop method
// todo: removes the element at the top of the stack and returns it. If stack is empty return null.
@Override
public T pop() {
if (myList.isEmpty()) {
return null;
}
T result = myList.get(myList.size() - 1);
myList.remove(myList.size() - 1);
return result;
}
// peek method
// todo: returns the element at the top of the stack but does not remove it. If stack is empty return null.
@Override
public T peek() {
if (myList.isEmpty()) {
return null;
}
return myList.get(myList.size() - 1);
}
// size method
// todo: return the # of elements in the stack
@Override
public int size() {
return myList.size();
}
// isEmpty method
public boolean isEmpty() {
return myList.isEmpty();
}
}
// Question 4: isValidString
abstract class FixExpression {
private String expression;
private String validChars = "0123456789+-*/";
FixExpression(String expression) {
this.expression = expression;
}
public boolean isValidString() {
for (char c : expression.toCharArray()){
if (validChars.contains(Character.toString(c))){
continue;
}
return false;
}
return true;
}
public String getExpression() {
return expression;
}
public String getValidChars() {
return validChars;
}
public abstract int evaluateExpression();
}
class TrivialImplExpression extends FixExpression{
TrivialImplExpression(String string){
super(string);
}
// todo: provide a trivial implementation of this abstract method
@Override
public int evaluateExpression(){
return 0;
}
}
class TestingFixExpression{
public static void main(String[] args) {
FixExpression fixExpression1 = new TrivialImplExpression("1+2");
System.out.println(fixExpression1.isValidString()); // true
FixExpression fixExpression2 = new TrivialImplExpression("abc");
System.out.println(fixExpression2.isValidString()); // false
}
}
// Question 5: PostFixExpression
class PostFixExpression extends FixExpression {
PostFixExpression(String expression){
super(expression);
}
@Override
public int evaluateExpression(){
StackImpl<Integer> postFix = new StackImpl<>();
for (char c : getExpression().toCharArray()){
if (isOperand(c)) {
postFix.push(Character.getNumericValue(c));
} else if (isOperator(c)) {
int p2 = postFix.pop();
int p1 = postFix.pop();
int p3 = getValue(p1, p2, c);
postFix.push(p3);
}
}
return postFix.pop();
}
// isOperator method
private boolean isOperator(char c){
if (c == '+' || c == '-' || c == '*' || c == '/'){
return true;
}
return false;
}
// isOperand method
private boolean isOperand(char c){
if (Character.isDigit(c)) {
return true;
}
return false;
}
// getValue method
private int getValue(int p1, int p2, char c){
if (c == '+'){
return p1 + p2;
} else if (c == '-') {
return p1 - p2;
}
else if (c == '*'){
return p1 * p2;
} else if (c == '/') {
return p1 / p2;
}
return 0;
}
}
class TestPostfixExpression {
public static void main(String[] args) {
FixExpression f1 = new PostFixExpression("12+");
System.out.println(f1.evaluateExpression()); // 3
FixExpression f2 = new PostFixExpression("234*+");
System.out.println(f2.evaluateExpression()); // 14
FixExpression f3 = new PostFixExpression("1");
System.out.println(f3.evaluateExpression()); // 1
}
}