-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTextEditor.java
More file actions
127 lines (111 loc) · 3.33 KB
/
TextEditor.java
File metadata and controls
127 lines (111 loc) · 3.33 KB
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
package swe.StackQueue;
import java.util.Stack;
class Action {
Character character;
ActionType type;
public Action(ActionType type) {
this.type = type;
}
public Action(ActionType type, Character character) {
this.character = character;
this.type = type;
}
public Character getCharacter() {
return character;
}
public ActionType getType() {
return type;
}
}
enum ActionType {
INSERT,
DELETE,
UNDO,
REDO
}
public class TextEditor {
private String currentState;
private Stack<Action> undo;
private Stack<Action> redo;
public TextEditor() {
currentState = "";
undo = new Stack<>();
redo = new Stack<>();
}
public String performEditorAction(Action type) {
switch (type.getType()) {
case INSERT -> {
insert(type.getCharacter());
break;
}
case DELETE -> {
delete();
break;
}
case REDO -> {
redo();
break;
}
case UNDO -> {
undo();
break;
}
}
return currentState;
}
private void insert(char c) {
undo.push(new Action(ActionType.DELETE));
currentState += c;
redo.clear();
}
private void delete() {
if (!currentState.isEmpty()) {
undo.push(new Action(ActionType.INSERT, currentState.charAt(currentState.length() - 1)));
currentState = currentState.substring(0, currentState.length() - 1);
redo.clear();
}
}
private void undo() {
if (!undo.isEmpty()) {
Action lastAction = undo.pop();
redo.push(lastAction);
switch (lastAction.getType()) {
case INSERT -> {
delete();
break;
}
case DELETE -> {
insert(lastAction.getCharacter());
break;
}
}
}
}
private void redo() {
if (!redo.isEmpty()) {
Action lastAction = redo.pop();
undo.push(lastAction);
switch (lastAction.getType()) {
case INSERT -> {
insert(lastAction.getCharacter());
break;
}
case DELETE -> {
delete();
break;
}
}
}
}
public static void main(String[] args) {
TextEditor textEditor = new TextEditor();
textEditor.performEditorAction(new Action(ActionType.INSERT,'H'));
textEditor.performEditorAction(new Action(ActionType.INSERT,'e'));
textEditor.performEditorAction(new Action(ActionType.INSERT,'l'));
textEditor.performEditorAction(new Action(ActionType.INSERT,'l'));
textEditor.performEditorAction(new Action(ActionType.INSERT,'o'));
textEditor.performEditorAction(new Action(ActionType.INSERT,'H'));
textEditor.performEditorAction(new Action(ActionType.DELETE));
System.out.println(textEditor.currentState);
}
}