-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathStackIndentationChecker.java
59 lines (52 loc) · 2.09 KB
/
StackIndentationChecker.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
package InterviewQuestion;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.Stack;
public class StackIndentationChecker{
public static void main(String[] args) {
for (String filename : args) {
if (checkIndentation(filename)) {
System.out.println(filename + " - Proper indentation");
} else {
System.out.println(filename + " - Improper indentation");
}
}
}
public static boolean checkIndentation(String filename) {
try (BufferedReader br = new BufferedReader(new FileReader(filename))) {
Stack<Integer> indentationStack = new Stack<>();
String line;
int lineNumber = 0;
while ((line = br.readLine()) != null) {
lineNumber++;
// Ignore completely blank lines
if (line.trim().isEmpty()) {
continue;
}
// Find the column number of the first non-blank character
int columnNumber = 0;
while (columnNumber < line.length() && Character.isWhitespace(line.charAt(columnNumber))) {
columnNumber++;
}
if (indentationStack.isEmpty()) {
indentationStack.push(columnNumber);
} else if (columnNumber > indentationStack.peek()) {
indentationStack.push(columnNumber);
} else if (columnNumber < indentationStack.peek()) {
while (!indentationStack.isEmpty() && columnNumber < indentationStack.peek()) {
indentationStack.pop();
}
if (indentationStack.isEmpty() || columnNumber != indentationStack.peek()) {
// Indentation error found
return false;
}
}
}
return true; // Indentation is correct
} catch (IOException e) {
e.printStackTrace();
return false;
}
}
}