-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.cpp
More file actions
296 lines (277 loc) · 5.53 KB
/
data.cpp
File metadata and controls
296 lines (277 loc) · 5.53 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
#pragma once
#include "data.h"
#include<iostream>
#include<string>
void Dataset::edit() {
std::cout << "*************** 데이터 편집 모드 ***************" << endl;
std::cout << " ------------ 0.편집종료 ------------" << endl;
std::cout << " | 1.단어삽입 2.단어수정 3.단어삭제 |" << endl;
std::cout << " | 4.문장삽입 5.문장수정 6.문장삭제 |" << endl;
std::cout << " | 7.긴글삽입 8.긴글수정 9.긴글삭제 |" << endl;
std::cout << " ------------------------------------" << endl;
while (true) {
std::cout << "\n편집모드 선택 >> ";
int choice;
cin >> choice;
switch (choice) {
case(0): {
std::cout << "************ 데이터 편집 종료 ************\n" << endl;
return;
break;
}
case(1): {
get_word();
show_word();
break;
}
case(2): {
modi_word();
show_word();
break;
}
case(3): {
del_word();
show_word();
break;
}
case(4): {
get_sentence();
show_sentence();
break;
}
case(5): {
modi_sentence();
show_sentence();
break;
}
case(6): {
del_sentence();
show_sentence();
break;
}
case(7): {
get_essay();
show_essay();
break;
}
case(8): {
modi_essay();
show_essay();
break;
}
case(9): {
del_essay();
show_essay();
break;
}
default: {
std::cout << "\n잘못된 입력이므로 프로그램을 종료합니다" << endl;
exit(0);
}
}
}
}
//단어 공간길이반환
int Dataset::getWsize() {
return wsize;
}
//문장 공간크기반환
int Dataset::getSsize() {
return ssize;
}
//긴글(문단) 공간크기반환
int Dataset::getEsize() {
return esize;
}
//단어 삽입
void Dataset::get_word() {
int tmp = 0;
string s;
std::cout << "몇 개의 단어를 입력하시겠습니까? : ";
cin >> tmp;
std::cout << tmp << "개 단어 입력 >> ";
//처음 입력하는 경우
if (wp == NULL) {
wp = new string[tmp];
for (int i = 0; i < tmp; i++) {
cin >> wp[i];
}
}
//추가 입력하는 경우
else {
string* newp = new string[tmp + wsize];
copy(wp, wp + wsize, newp);
delete[] wp;
wp = newp;
newp = NULL;
for (int i = 0; i < tmp; i++) {
cin >> wp[wsize+i];
}
}
wsize += tmp;
}
//문장 삽입
void Dataset::get_sentence() {
int tmp;
cout << "몇 개의 문장을 입력하시겠습니까? : ";
cin >> tmp;
std::cout << tmp << "개 문장 입력 >> ";
//처음 입력하는 경우
if (sp == NULL) {
sp = new string[tmp];
cin.ignore();
for (int i = 0; i < tmp; i++) {
cout << "[" << i << "] ";
getline(cin, sp[i], '\n');
}
}
//추가 입력하는 경우
else {
string* newp = new string[tmp + ssize];
copy(sp, sp + ssize, newp);
delete[] sp;
sp = newp;
newp = NULL;
cin.ignore();
for (int i = 0; i < tmp; i++) {
cout << "[" << ssize+i << "] ";
getline(cin, sp[ssize+i], '\n');
}
}
ssize += tmp;
}
//긴글 삽입
void Dataset::get_essay() {
int tmp;
cout << "몇 개(enter key 기준)의 문단을 입력하시겠습니까? : ";
cin >> tmp;
std::cout << tmp << "개 문단 입력 >> ";
//처음 입력하는 경우
if (ep == NULL) {
ep = new string[tmp];
cin.ignore();
for (int i = 0; i < tmp; i++) {
cout << "[" << i << "] ";
getline(cin, ep[i], '\n');
}
}
//추가 입력하는 경우
else {
string* newp = new string[tmp + esize];
copy(ep, ep + esize, newp);
delete[] ep;
ep = newp;
newp = NULL;
cin.ignore();
for (int i = 0; i < tmp; i++) {
cout << "[" << esize + i << "] ";
getline(cin, ep[esize + i], '\n');
}
}
esize += tmp;
}
//전체 단어 출력
void Dataset::show_word() {
for (int i = 0; i < wsize; i++) {
if (wp[i] != "")
cout << wp[i] << " ";
if (i == wsize - 1)
std::cout << endl;
}
}
//특정 단어 반환
string Dataset::one_word(int i) {
return wp[i];
}
//전체 문장 출력
void Dataset::show_sentence() {
for (int i = 0; i < ssize; i++) {
cout << "[" << i << "] ";
std::cout << sp[i] << endl;
if (i == ssize - 1)
std::cout << endl;
}
}
//특정 문장 반환
string Dataset::one_sentence(int i) {
return sp[i];
}
//전체 문단 출력
void Dataset::show_essay() {
for (int i = 0; i < esize; i++) {
cout << "[" << i << "] ";
std::cout << ep[i] << endl;
if (i == esize - 1)
std::cout << endl;
}
}
//특정 문단 반환
string Dataset::one_essay(int i) {
return ep[i];
}
//단어 수정
void Dataset::modi_word() {
std::cout << "수정할 단어를 입력하세요 >> ";
string word;
cin >> word;
for (int i = 0; i < wsize; i++) {
if (wp[i].compare(word) == 0) {
std::cout << "수정 목표 단어를 입력하세요 >> ";
cin >> word;
wp[i] = word;
std::cout << wp[i] << "로 수정되었습니다." << endl;
}
}
}
//문장 수정
void Dataset::modi_sentence() {
std::cout << "수정할 문장위치를 입력하세요 >> ";
int id = 0;
cin >> id;
cin.ignore();
std::cout << "수정 목표 문장을 입력하세요 >> ";
string sentence;
getline(cin, sentence, '\n');
sp[id] = sentence;
std::cout <<"로 수정되었습니다." << endl;
}
//긴글 수정
void Dataset::modi_essay() {
std::cout << "수정할 긴글위치를 입력하세요 >> ";
int id = 0;
cin >> id;
cin.ignore();
std::cout << "수정 목표 긴글을 입력하세요 >> ";
string essay;
getline(cin, essay, '\n');
ep[id] = essay;
std::cout << "로 수정되었습니다." << endl;
}
//단어 삭제
void Dataset::del_word() {
std::cout << "삭제할 단어를 입력하세요 >> ";
string word;
cin >> word;
for (int i = 0; i < wsize; i++) {
if (wp[i].compare(word) == 0) {
wp[i] = "";
std::cout << wp[i] << "삭제 되었습니다." << endl;
}
}
}
//문장 삭제
void Dataset::del_sentence() {
std::cout << "삭제할 문장위치를 입력하세요 >> ";
int id = 0;
cin >> id;
sp[id] = "";
std::cout << "삭제되었습니다." << endl;
}
//문단 삭제
void Dataset::del_essay() {
std::cout << "삭제할 긴글위치를 입력하세요 >> ";
int id = 0;
cin >> id;
ep[id] = "";
std::cout << "삭제되었습니다." << endl;
}