-
Notifications
You must be signed in to change notification settings - Fork 6
/
Puzzle-CGX_Formatter_V2.txt
105 lines (94 loc) · 2.79 KB
/
Puzzle-CGX_Formatter_V2.txt
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
import java.util.*;
import java.io.*;
import java.math.*;
class Solution {
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
int N = in.nextInt();
in.nextLine();
String CGXLine[] = new String[N];
String ligneComplete = "";
for (int i = 0; i < N; i++) {
CGXLine[i] = in.nextLine();
ligneComplete += CGXLine[i];
}
System.err.println(ligneComplete);
formateLigne(ligneComplete);
}
public static void ecritLigneFormate(String ligne){
if (ligne == null || ligne.trim().equalsIgnoreCase("")){
return;
}
System.out.println(ligne);
}
public static void formateLigne(String ligne){
if (ligne == null || ligne.trim().equalsIgnoreCase("")){
return;
}
boolean nonModifiable =false;
int nbOuverture = 0;
String ligneFormat ="";
String tab = " ";
String espace = "";
int nbCaractere = ligne.length();
boolean bloc = false;
for(int intChar = 0; intChar < nbCaractere ; intChar++){
if(nonModifiable){
ligneFormat += ligne.charAt(intChar);
if(ligne.charAt(intChar) == '\''){
nonModifiable = false;
}
}else if(ligne.charAt(intChar) == '\''){
ligneFormat += ligne.charAt(intChar);
nonModifiable = true;
}else if(ligne.charAt(intChar) == '('){
//System.err.println("ouverture " + nbOuverture);
if(nbOuverture > 0 && !bloc){
espace += tab;
}
if (bloc){
ecritLigneFormate(espace +tab +ligneFormat.trim());
}else {
ecritLigneFormate(espace +ligneFormat.trim());
}
ecritLigneFormate(espace + "(");
ligneFormat = "";
nbOuverture++;
}else if(ligne.charAt(intChar) == ')'){
nbOuverture--;
//System.err.println(" fermeture "+nbOuverture);
if(nbOuverture > 0){
espace = espace.substring(0,nbOuverture*4);
}else {
espace = "";
bloc = false;
}
ecritLigneFormate(espace + tab + ligneFormat.trim());
if(intChar < (nbCaractere-1) && ligne.charAt(intChar+1) == ';'){
ecritLigneFormate(espace + ");");
intChar++;
}else {
ecritLigneFormate(espace + ")");
}
ligneFormat = "";
if (nbOuverture > 0){
bloc = true;
}else {
bloc = false;
}
}else if (ligne.charAt(intChar) == ';'){
ligneFormat += ligne.charAt(intChar);
ecritLigneFormate(espace + tab + ligneFormat.trim());
ligneFormat = "";
}else {
if (ligne.charAt(intChar) != ' '){
ligneFormat += ligne.charAt(intChar);
}
}
//System.err.println(intChar);
if(intChar == nbCaractere-1 && ligneFormat.trim()!=""){
ecritLigneFormate(ligneFormat.trim());
}
}
}
}