-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathDesign a text editor.cpp
71 lines (59 loc) Β· 1.64 KB
/
Design a text editor.cpp
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
class TextEditor {
stack<char> left;
stack<char> right;
public:
TextEditor() {
}
void addText(string text) {
for(auto &c : text){
left.push(c);
}
}
int deleteText(int k) {
int cnt=0;
while(!left.empty() and k>0){
left.pop();
cnt++;
k--;
}
return cnt;
}
string cursorLeft(int k) {
while(!left.empty() and k>0){
char c = left.top();left.pop();
right.push(c);
k--;
}
// returning the last min(10, len) characters to the left of the cursor
return cursorShiftString();
}
string cursorRight(int k) {
while(!right.empty() and k>0){
char c = right.top();right.pop();
left.push(c);
k--;
}
// returning the last min(10, len) characters to the left of the cursor
return cursorShiftString();
}
// function to return the last min(10, len) characters to the left of the cursor
string cursorShiftString(){
string rtn = "";
int cnt=10;
while(!left.empty() and cnt>0){
char c = left.top();left.pop();
rtn += c;
cnt--;
}
reverse(rtn.begin(),rtn.end());
for(int i=0;i<rtn.size();i++){
left.push(rtn[i]);
}
return rtn;
}
};
//Input
//["TextEditor","addText","deleteText","addText","cursorRight","cursorLeft","deleteText","cursorLeft","cursorRight"]
//[[],["leetcode"],[4],["practice"],[3],[8],[10],[2],[6]]
//Output
//[null,null,4,null,"etpractice","leet",4,"","practi"]