-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlangdt3.c
281 lines (278 loc) · 9.15 KB
/
langdt3.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
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
#include "dict.h"
Dict getClassCLanguages(){
Dict shinwa;
shinwa=DictCreate();
/****************************** Chinese ***********************************/
//zh Chinese 中文 (Zhōngwén), 汉语, 漢語
DictInsert(shinwa,"该","zh");
DictInsert(shinwa,"确实","zh");
DictInsert(shinwa,"你是","zh");
DictInsert(shinwa,"以","zh");
DictInsert(shinwa,"下面","zh");
DictInsert(shinwa,"好","zh");
DictInsert(shinwa,"进一步","zh");
DictInsert(shinwa,"着","zh");
DictInsert(shinwa,"他们的","zh");
DictInsert(shinwa,"拿","zh");
DictInsert(shinwa,"他们自己","zh");
DictInsert(shinwa,"尽管","zh");
DictInsert(shinwa,"您的","zh");
DictInsert(shinwa,"后","zh");
DictInsert(shinwa,"能够","zh");
DictInsert(shinwa,"拥有","zh");
DictInsert(shinwa,"跟随","zh");
DictInsert(shinwa,"几乎不","zh");
DictInsert(shinwa,"若","zh");
DictInsert(shinwa,"前","zh");
DictInsert(shinwa,"五","zh");
DictInsert(shinwa,"仍","zh");
DictInsert(shinwa,"跟着","zh");
DictInsert(shinwa,"而","zh");
DictInsert(shinwa,"不应该","zh");
DictInsert(shinwa,"向下","zh");
DictInsert(shinwa,"另","zh");
DictInsert(shinwa,"使","zh");
DictInsert(shinwa,"尤其","zh");
DictInsert(shinwa,"各","zh");
DictInsert(shinwa,"嘛","zh");
DictInsert(shinwa,"所","zh");
DictInsert(shinwa,"什么时候","zh");
DictInsert(shinwa,"虽然","zh");
DictInsert(shinwa,"既","zh");
DictInsert(shinwa,"只","zh");
DictInsert(shinwa,"大家","zh");
DictInsert(shinwa,"在","zh");
DictInsert(shinwa,"一旦","zh");
DictInsert(shinwa,"都","zh");
DictInsert(shinwa,"周围","zh");
DictInsert(shinwa,"太","zh");
DictInsert(shinwa,"此","zh");
DictInsert(shinwa,"存在","zh");
DictInsert(shinwa,"再","zh");
DictInsert(shinwa,"中","zh");
DictInsert(shinwa,"一切","zh");
DictInsert(shinwa,"不","zh");
DictInsert(shinwa,"同","zh");
DictInsert(shinwa,"上","zh");
DictInsert(shinwa,"其实","zh");
DictInsert(shinwa,"以下","zh");
DictInsert(shinwa,"哪一个","zh");
DictInsert(shinwa,"一些","zh");
DictInsert(shinwa,"第五","zh");
DictInsert(shinwa,"有","zh");
DictInsert(shinwa,"还","zh");
DictInsert(shinwa,"本人","zh");
DictInsert(shinwa,"无","zh");
DictInsert(shinwa,"现在","zh");
DictInsert(shinwa,"不见了","zh");
DictInsert(shinwa,"这个","zh");
DictInsert(shinwa,"沿着","zh");
DictInsert(shinwa,"变得","zh");
DictInsert(shinwa,"被","zh");
DictInsert(shinwa,"因为","zh");
DictInsert(shinwa,"趁","zh");
DictInsert(shinwa,"咱","zh");
DictInsert(shinwa,"虽","zh");
DictInsert(shinwa,"然后","zh");
DictInsert(shinwa,"则","zh");
DictInsert(shinwa,"你","zh");
DictInsert(shinwa,"完成","zh");
DictInsert(shinwa,"足够","zh");
DictInsert(shinwa,"什么","zh");
DictInsert(shinwa,"前任的","zh");
DictInsert(shinwa,"有空","zh");
DictInsert(shinwa,"距","zh");
DictInsert(shinwa,"只是","zh");
DictInsert(shinwa,"他们","zh");
DictInsert(shinwa,"相信","zh");
DictInsert(shinwa,"不能","zh");
DictInsert(shinwa,"单独","zh");
DictInsert(shinwa,"不同","zh");
DictInsert(shinwa,"得到","zh");
DictInsert(shinwa,"别处","zh");
DictInsert(shinwa,"你自己","zh");
DictInsert(shinwa,"于","zh");
DictInsert(shinwa,"打","zh");
DictInsert(shinwa,"走","zh");
DictInsert(shinwa,"相应地","zh");
DictInsert(shinwa,"每一个","zh");
DictInsert(shinwa,"你已经","zh");
DictInsert(shinwa,"把","zh");
DictInsert(shinwa,"哇","zh");
DictInsert(shinwa,"去","zh");
DictInsert(shinwa,"通过","zh");
DictInsert(shinwa,"最","zh");
DictInsert(shinwa,"来","zh");
DictInsert(shinwa,"小","zh");
DictInsert(shinwa,"向","zh");
DictInsert(shinwa,"她的","zh");
DictInsert(shinwa,"也","zh");
DictInsert(shinwa,"某些","zh");
DictInsert(shinwa,"并","zh");
DictInsert(shinwa,"儿","zh");
DictInsert(shinwa,"之前","zh");
DictInsert(shinwa,"哪","zh");
DictInsert(shinwa,"如","zh");
DictInsert(shinwa,"沿","zh");
DictInsert(shinwa,"当","zh");
DictInsert(shinwa,"靠","zh");
DictInsert(shinwa,"看","zh");
DictInsert(shinwa,"据","zh");
DictInsert(shinwa,"啥","zh");
DictInsert(shinwa,"四","zh");
DictInsert(shinwa,"啦","zh");
DictInsert(shinwa,"根据","zh");
DictInsert(shinwa,"您","zh");
DictInsert(shinwa,"以上","zh");
DictInsert(shinwa,"原因","zh");
DictInsert(shinwa,"她","zh");
DictInsert(shinwa,"很","zh");
DictInsert(shinwa,"你会","zh");
DictInsert(shinwa,"此外","zh");
DictInsert(shinwa,"下","zh");
DictInsert(shinwa,"曾","zh");
DictInsert(shinwa,"这","zh");
DictInsert(shinwa,"只要","zh");
DictInsert(shinwa,"包含","zh");
DictInsert(shinwa,"这些","zh");
DictInsert(shinwa,"等等","zh");
DictInsert(shinwa,"因","zh");
DictInsert(shinwa,"致","zh");
DictInsert(shinwa,"在旁边","zh");
DictInsert(shinwa,"反对","zh");
DictInsert(shinwa,"亦","zh");
DictInsert(shinwa,"那会","zh");
DictInsert(shinwa,"例如","zh");
DictInsert(shinwa,"何","zh");
DictInsert(shinwa,"为什么","zh");
DictInsert(shinwa,"与","zh");
DictInsert(shinwa,"之","zh");
DictInsert(shinwa,"这样","zh");
DictInsert(shinwa,"进入","zh");
DictInsert(shinwa,"即","zh");
DictInsert(shinwa,"那里","zh");
DictInsert(shinwa,"它的","zh");
DictInsert(shinwa,"第一","zh");
DictInsert(shinwa,"吧","zh");
DictInsert(shinwa,"几","zh");
DictInsert(shinwa,"从","zh");
DictInsert(shinwa,"跟","zh");
DictInsert(shinwa,"人","zh");
DictInsert(shinwa,"怎么样","zh");
DictInsert(shinwa,"到处","zh");
DictInsert(shinwa,"向前","zh");
DictInsert(shinwa,"的","zh");
DictInsert(shinwa,"得","zh");
DictInsert(shinwa,"关于","zh");
DictInsert(shinwa,"诸","zh");
DictInsert(shinwa,"要么","zh");
DictInsert(shinwa,"向上","zh");
DictInsert(shinwa,"之间","zh");
DictInsert(shinwa,"惯于","zh");
DictInsert(shinwa,"用","zh");
DictInsert(shinwa,"比","zh");
DictInsert(shinwa,"到","zh");
DictInsert(shinwa,"已","zh");
DictInsert(shinwa,"再次","zh");
DictInsert(shinwa,"却","zh");
DictInsert(shinwa,"她自己","zh");
DictInsert(shinwa,"么","zh");
DictInsert(shinwa,"八","zh");
DictInsert(shinwa,"但","zh");
DictInsert(shinwa,"几乎","zh");
DictInsert(shinwa,"不会","zh");
DictInsert(shinwa,"我们自己","zh");
DictInsert(shinwa,"他","zh");
DictInsert(shinwa,"这里","zh");
DictInsert(shinwa,"竞技场","zh");
DictInsert(shinwa,"旁","zh");
DictInsert(shinwa,"可以","zh");
DictInsert(shinwa,"本身","zh");
DictInsert(shinwa,"另一个","zh");
DictInsert(shinwa,"给","zh");
DictInsert(shinwa,"个","zh");
DictInsert(shinwa,"我","zh");
DictInsert(shinwa,"往","zh");
DictInsert(shinwa,"之后","zh");
DictInsert(shinwa,"还没有","zh");
DictInsert(shinwa,"及","zh");
DictInsert(shinwa,"还没","zh");
DictInsert(shinwa,"任何地方","zh");
DictInsert(shinwa,"已经","zh");
DictInsert(shinwa,"不是","zh");
DictInsert(shinwa,"哪里","zh");
DictInsert(shinwa,"今","zh");
DictInsert(shinwa,"来了","zh");
DictInsert(shinwa,"其中","zh");
DictInsert(shinwa,"背后","zh");
DictInsert(shinwa,"在做","zh");
DictInsert(shinwa,"怎","zh");
DictInsert(shinwa,"直到","zh");
DictInsert(shinwa,"那些","zh");
DictInsert(shinwa,"至","zh");
DictInsert(shinwa,"自","zh");
DictInsert(shinwa,"变成","zh");
DictInsert(shinwa,"一","zh");
DictInsert(shinwa,"起","zh");
DictInsert(shinwa,"曾经","zh");
DictInsert(shinwa,"哟","zh");
DictInsert(shinwa,"和","zh");
DictInsert(shinwa,"其他","zh");
DictInsert(shinwa,"给定","zh");
DictInsert(shinwa,"随","zh");
DictInsert(shinwa,"如果","zh");
DictInsert(shinwa,"他的","zh");
DictInsert(shinwa,"尔","zh");
DictInsert(shinwa,"做了","zh");
DictInsert(shinwa,"远","zh");
DictInsert(shinwa,"其","zh");
DictInsert(shinwa,"乃","zh");
DictInsert(shinwa,"应该","zh");
DictInsert(shinwa,"凡","zh");
DictInsert(shinwa,"些","zh");
DictInsert(shinwa,"每","zh");
DictInsert(shinwa,"是","zh");
DictInsert(shinwa,"某","zh");
DictInsert(shinwa,"任何","zh");
DictInsert(shinwa,"总是","zh");
DictInsert(shinwa,"超越","zh");
DictInsert(shinwa,"相同","zh");
DictInsert(shinwa,"它","zh");
DictInsert(shinwa,"许多","zh");
DictInsert(shinwa,"当然","zh");
DictInsert(shinwa,"穿过","zh");
DictInsert(shinwa,"成为","zh");
DictInsert(shinwa,"无论如何","zh");
DictInsert(shinwa,"预先","zh");
DictInsert(shinwa,"为","zh");
DictInsert(shinwa,"可","zh");
DictInsert(shinwa,"让","zh");
DictInsert(shinwa,"们","zh");
DictInsert(shinwa,"问","zh");
DictInsert(shinwa,"我们的","zh");
DictInsert(shinwa,"凭","zh");
DictInsert(shinwa,"且","zh");
DictInsert(shinwa,"任何东西","zh");
DictInsert(shinwa,"没有","zh");
DictInsert(shinwa,"因此","zh");
DictInsert(shinwa,"你的","zh");
DictInsert(shinwa,"那","zh");
DictInsert(shinwa,"或","zh");
DictInsert(shinwa,"非常","zh");
DictInsert(shinwa,"关","zh");
DictInsert(shinwa,"教育","zh");
DictInsert(shinwa,"发生","zh");
DictInsert(shinwa,"了","zh");
DictInsert(shinwa,"嗡","zh");
DictInsert(shinwa,"以前","zh");
DictInsert(shinwa,"由","zh");
DictInsert(shinwa,"又","zh");
DictInsert(shinwa,"除了","zh");
DictInsert(shinwa,"将","zh");
DictInsert(shinwa,"任何人","zh");
DictInsert(shinwa,"谁","zh");
DictInsert(shinwa,"几个","zh");
DictInsert(shinwa,"别","zh");
//return shinwa
return shinwa;
}