-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathSimple Text Editor.cpp
47 lines (38 loc) · 1.07 KB
/
Simple 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
#include <iostream>
#include <string>
#include <stack>
using namespace std;
stack<pair<int, string> > st;
int main() {
int q, tmp;
string s = "", a;
cin >> q;
while(q--) {
cin >> tmp;
switch(tmp) {
case 1:
cin >> a;
s += a;
st.push(make_pair(1, a));
break;
case 2:
cin >> tmp;
st.push(make_pair(2, s.substr(s.length() - tmp)));
s = s.substr(0, s.length() - tmp);
break;
case 3:
cin >> tmp;
cout << s[tmp-1] << endl;
break;
case 4:
pair<int, string> ptmp = st.top();
st.pop();
if(ptmp.first == 1)
s = s.substr(0, s.length() - ptmp.second.length());
else
s += ptmp.second;
break;
}
}
return 0;
}