-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStructuring_the_document.c
227 lines (188 loc) · 5.22 KB
/
Structuring_the_document.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#define MAX_CHARACTERS 1005
#define MAX_PARAGRAPHS 5
struct word {
char* data;
};
struct sentence {
struct word* data;
int word_count;//denotes number of words in a sentence
};
struct paragraph {
struct sentence* data ;
int sentence_count;//denotes number of sentences in a paragraph
};
struct document {
struct paragraph* data;
int paragraph_count;//denotes number of paragraphs in a document
};
typedef struct word word;
typedef struct sentence sentence;
typedef struct paragraph paragraph;
typedef struct document document;
void add_char(word *_word, char character)
{
static int size;
if (_word->data == NULL)
{
size = 0;
_word->data = (char *)malloc(0);
}
_word->data = (char *)realloc(_word->data, (size + 1) * sizeof(char));
_word->data[size] = character;
_word->data[size + 1] = 0;
size++;
}
void add_word(sentence *_sentence, word *_word)
{
if (_sentence->data == NULL)
{
_sentence->data = (word *)malloc(0);
_sentence->word_count = 0;
}
_sentence->word_count++;
_sentence->data = (word *)realloc(_sentence->data, _sentence->word_count * sizeof(word));
_sentence->data[_sentence->word_count - 1] = *_word;
_word->data = NULL;
}
void add_sentence(paragraph *_paragraph, sentence *_sentence)
{
if (_paragraph->data == NULL)
{
_paragraph->data = (sentence *)malloc(0);
_paragraph->sentence_count = 0;
}
_paragraph->sentence_count++;
_paragraph->data = (sentence *)realloc(_paragraph->data, _paragraph->sentence_count * sizeof(sentence));
_paragraph->data[_paragraph->sentence_count - 1] = *_sentence;
_sentence->data = NULL;
}
void add_paragraph(document *_document, paragraph *_paragraph)
{
if (_document->data == NULL)
{
_document->data = (paragraph *)malloc(0);
_document->paragraph_count = 0;
}
_document->paragraph_count++;
_document->data = (paragraph *)realloc(_document->data, _document->paragraph_count * sizeof(paragraph));
_document->data[_document->paragraph_count - 1] = *_paragraph;
_paragraph->data = NULL;
}
struct document get_document(char* text)
{
document _document;
paragraph _paragraph;
sentence _sentence;
word _word;
_document.data = NULL;
_paragraph.data = NULL;
_sentence.data = NULL;
_word.data = NULL;
for (unsigned int i = 0; i <= strlen(text); i++)
{
switch (text[i])
{
case ' ':
add_word(&_sentence, &_word);
break;
case '.':
add_word(&_sentence, &_word);
add_sentence(&_paragraph, &_sentence);
break;
case '\n':
case '\0':
add_paragraph(&_document, &_paragraph);
break;
default:
add_char(&_word, text[i]);
break;
}
}
return _document;
}
struct word kth_word_in_mth_sentence_of_nth_paragraph(struct document Doc, int k, int m, int n)
{
return Doc.data[n - 1].data[m - 1].data[k - 1];
}
struct sentence kth_sentence_in_mth_paragraph(struct document Doc, int k, int m)
{
return Doc.data[m - 1].data[k - 1];
}
struct paragraph kth_paragraph(struct document Doc, int k)
{
return Doc.data[k - 1];
}
void print_word(struct word w) {
printf("%s", w.data);
}
void print_sentence(struct sentence sen) {
for(int i = 0; i < sen.word_count; i++) {
print_word(sen.data[i]);
if (i != sen.word_count - 1) {
printf(" ");
}
}
}
void print_paragraph(struct paragraph para) {
for(int i = 0; i < para.sentence_count; i++){
print_sentence(para.data[i]);
printf(".");
}
}
void print_document(struct document doc) {
for(int i = 0; i < doc.paragraph_count; i++) {
print_paragraph(doc.data[i]);
if (i != doc.paragraph_count - 1)
printf("\n");
}
}
char* get_input_text() {
int paragraph_count;
scanf("%d", ¶graph_count);
char p[MAX_PARAGRAPHS][MAX_CHARACTERS], doc[MAX_CHARACTERS];
memset(doc, 0, sizeof(doc));
getchar();
for (int i = 0; i < paragraph_count; i++) {
scanf("%[^\n]%*c", p[i]);
strcat(doc, p[i]);
if (i != paragraph_count - 1)
strcat(doc, "\n");
}
char* returnDoc = (char*)malloc((strlen (doc)+1) * (sizeof(char)));
strcpy(returnDoc, doc);
return returnDoc;
}
int main()
{
char* text = get_input_text();
struct document Doc = get_document(text);
int q;
scanf("%d", &q);
while (q--) {
int type;
scanf("%d", &type);
if (type == 3){
int k, m, n;
scanf("%d %d %d", &k, &m, &n);
struct word w = kth_word_in_mth_sentence_of_nth_paragraph(Doc, k, m, n);
print_word(w);
}
else if (type == 2) {
int k, m;
scanf("%d %d", &k, &m);
struct sentence sen= kth_sentence_in_mth_paragraph(Doc, k, m);
print_sentence(sen);
}
else{
int k;
scanf("%d", &k);
struct paragraph para = kth_paragraph(Doc, k);
print_paragraph(para);
}
printf("\n");
}
}