-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYouDaoDic.xml
5967 lines (5952 loc) · 237 KB
/
YouDaoDic.xml
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<wordbook><item> <word>phonetic</word>
<trans><![CDATA[adj. 语音的,语音学的;音形一致的;发音有细微区别的]]></trans>
<phonetic><![CDATA[[fə'netɪk]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>refactor</word>
<trans><![CDATA[n. 重构
vt. 重构]]></trans>
<phonetic><![CDATA[[ri'fæktə]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>represent</word>
<trans><![CDATA[【计】表示
vt. 代表;表现;描绘;回忆;再赠送
vi. 代表;提出异议]]></trans>
<phonetic><![CDATA[[reprɪ'zent]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>decimal fraction</word>
<trans><![CDATA[n. 小数;[数] 十进制小数]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>enormous</word>
<trans><![CDATA[adj. 庞大的,巨大的;凶暴的,极恶的]]></trans>
<phonetic><![CDATA[[ɪ'nɔːməs]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>step forward</word>
<trans><![CDATA[走出,向前进;站出来]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>neutral</word>
<trans><![CDATA[n. 中立国;中立者;非彩色;齿轮的空档
adj. 中立的,中性的;中立国的;非彩色的]]></trans>
<phonetic><![CDATA[['njuːtr(ə)l]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>enhance</word>
<trans><![CDATA[vt. 提高;加强;增加]]></trans>
<phonetic><![CDATA[[ɪn'hɑːns; -hæns; en-]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>explicitly</word>
<trans><![CDATA[adv. 明确地;明白地]]></trans>
<phonetic><![CDATA[[ik'splisitli]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>exact</word>
<trans><![CDATA[adj. 准确的,精密的;精确的
vt. 要求;强求;急需
vi. 勒索钱财]]></trans>
<phonetic><![CDATA[[ɪg'zækt; eg-]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>semantics</word>
<trans><![CDATA[n. [语] 语义学;语义论]]></trans>
<phonetic><![CDATA[[sɪ'mæntɪks]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>eager</word>
<trans><![CDATA[adj. 渴望的;热切的;热心的
n. (Eager)人名;(英)伊格]]></trans>
<phonetic><![CDATA[['iːgə]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>solve</word>
<trans><![CDATA[vt. 解决;解答;溶解
vi. 作解答]]></trans>
<phonetic><![CDATA[[sɒlv]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>modulo</word>
<trans><![CDATA[prep. 以…为模
adv. 按模计算]]></trans>
<phonetic><![CDATA[['mɔdjuləu, -dʒu-]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>arise</word>
<trans><![CDATA[vi. 出现;上升;起立
n. (Arise)人名;(西)阿里塞;(日)在濑(姓)]]></trans>
<phonetic><![CDATA[[ə'raɪz]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>lookup</word>
<trans><![CDATA[n. 查找;检查]]></trans>
<phonetic><![CDATA[['lʊkʌp]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>trade-offs</word>
<trans><![CDATA[n. 权衡(trade-off的复数);交易;物物交换]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>coordinate</word>
<trans><![CDATA[n. 坐标;同等的人或物
vt. 调整;整合
adj. 并列的;同等的
vi. 协调]]></trans>
<phonetic><![CDATA[[kəʊ'ɔ:dɪneɪt]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>principle</word>
<trans><![CDATA[n. 原理,原则;主义,道义;本质,本义;根源,源泉]]></trans>
<phonetic><![CDATA[['prɪnsɪp(ə)l]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>plain text</word>
<trans><![CDATA[纯文本;没有加密过的文件]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>restrict</word>
<trans><![CDATA[vt.限制;约束;限定]]></trans>
<phonetic><![CDATA[[rɪ'strɪkt]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>precise</word>
<trans><![CDATA[adj.精确的;明确的;严格的]]></trans>
<phonetic><![CDATA[[prɪ'saɪs]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>shelter</word>
<trans><![CDATA[n.庇护;避难所;遮盖物
vt.保护;使掩蔽
vi.躲避,避难
n.(Shelter)人名;(英)谢尔特]]></trans>
<phonetic><![CDATA[['ʃeltə]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>earn</word>
<trans><![CDATA[vt.赚,赚得;获得,挣得;使得到;博得
n.(Earn)人名;(泰)炎]]></trans>
<phonetic><![CDATA[[ɜːn]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>tribe</word>
<trans><![CDATA[n.部落;族;宗族;一伙
n.(Tribe)人名;(英)特赖布]]></trans>
<phonetic><![CDATA[[traɪb]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>stink</word>
<trans><![CDATA[n.臭味;讨厌的人
vi.发出臭味;招人讨厌
vt.使发出臭气;用臭味驱赶]]></trans>
<phonetic><![CDATA[[stɪŋk]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>paragraph</word>
<trans><![CDATA[n. 段落;短评;段落符号
vt. 将…分段]]></trans>
<phonetic><![CDATA[['pærəgrɑːf]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>reveal</word>
<trans><![CDATA[n. 揭露;暴露;门侧,窗侧
vt. 显示;透露;揭露;泄露]]></trans>
<phonetic><![CDATA[[rɪ'viːl]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>spread</word>
<trans><![CDATA[n. 传播;伸展
adj. 伸展的
vt. 传播,散布;展开;伸展;铺开
vi. 传播;伸展]]></trans>
<phonetic><![CDATA[[spred]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>spreadsheets</word>
<trans><![CDATA[n. 电子表格;电子数据表;试算表;空白表格程序]]></trans>
<phonetic><![CDATA[['spredʃi:ts]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>interchange</word>
<trans><![CDATA[n. 互换;立体交叉道
vt. (指两人等)交换;互换
vi. 交换;相互交换]]></trans>
<phonetic><![CDATA[[ɪntə'tʃeɪn(d)ʒ]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>trivial</word>
<trans><![CDATA[adj. 不重要的,琐碎的;琐细的]]></trans>
<phonetic><![CDATA[['trɪvɪəl]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>corrosive</word>
<trans><![CDATA[adj. 腐蚀的;侵蚀性的
n. 腐蚀物]]></trans>
<phonetic><![CDATA[[kə'rəʊsɪv]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>modest</word>
<trans><![CDATA[adj. 谦虚的,谦逊的;适度的;端庄的;羞怯的
n. (Modest)人名;(罗)莫代斯特;(德)莫德斯特;(俄)莫杰斯特]]></trans>
<phonetic><![CDATA[['mɒdɪst]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>variance</word>
<trans><![CDATA[n. 变异;变化;不一致;分歧;[数] 方差]]></trans>
<phonetic><![CDATA[['veərɪəns]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>emit</word>
<trans><![CDATA[vt. 发出,放射;发行;发表]]></trans>
<phonetic><![CDATA[[ɪ'mɪt]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>sentinel</word>
<trans><![CDATA[n. 哨兵
vt. 守卫,放哨]]></trans>
<phonetic><![CDATA[['sentɪn(ə)l]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>emulate</word>
<trans><![CDATA[n. 仿真;仿效
vt. 仿真;模仿;尽力赶上;同…竞争]]></trans>
<phonetic><![CDATA[['emjʊleɪt]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>regard as</word>
<trans><![CDATA[vt. 把…认作]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>regard</word>
<trans><![CDATA[n. 注意;尊重;问候;凝视
vi. 注意,注重;注视
vt. 注重,考虑;看待;尊敬;把…看作;与…有关
n. (Regard)人名;(西、意)雷加德;(法)勒加尔]]></trans>
<phonetic><![CDATA[[rɪ'gɑːd]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>Subject to change without notice</word>
<trans><![CDATA[]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>cooperative</word>
<trans><![CDATA[n. 合作社
adj. 合作的;合作社的]]></trans>
<phonetic><![CDATA[[kəʊ'ɒpərətɪv]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>occasionally</word>
<trans><![CDATA[adv. 偶尔;间或]]></trans>
<phonetic><![CDATA[[əˈkeɪʒnəli]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>consequently</word>
<trans><![CDATA[adv. 因此;结果;所以]]></trans>
<phonetic><![CDATA[['kɒnsɪkw(ə)ntlɪ]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>no more than</word>
<trans><![CDATA[adv. 只是;仅仅]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>mess</word>
<trans><![CDATA[n. 混乱;食堂,伙食团;困境;脏乱的东西
vt. 弄乱,弄脏;毁坏;使就餐
vi. 把事情弄糟;制造脏乱;玩弄
n. (Mess)人名;(德、罗)梅斯]]></trans>
<phonetic><![CDATA[[mes]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>cause</word>
<trans><![CDATA[n. 原因;事业;目标
vt. 引起;使遭受]]></trans>
<phonetic><![CDATA[[kɔːz]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>reinstate</word>
<trans><![CDATA[vt. 使恢复;使复原]]></trans>
<phonetic><![CDATA[[riːɪn'steɪt]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>dictated by</word>
<trans><![CDATA[取决于(dictated是dictate的过去分词形式)
由……影响(dictated是dictate的过去分词形式)]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>peculiar</word>
<trans><![CDATA[n. 特权;特有财产
adj. 特殊的;独特的;奇怪的;罕见的]]></trans>
<phonetic><![CDATA[[pɪ'kjuːlɪə]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>conceivably</word>
<trans><![CDATA[adv. 令人信服地;可相信地;想得到地]]></trans>
<phonetic><![CDATA[[kən'siːvəblɪ]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>qualify</word>
<trans><![CDATA[vi. 取得资格,有资格
vt. 限定,修饰;使具有资格;证明…合格]]></trans>
<phonetic><![CDATA[['kwɒlɪfaɪ]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>glance</word>
<trans><![CDATA[n. 一瞥;一滑;闪光
vt. 扫视;瞥见;擦过
vi. 扫视,匆匆一看;反光;瞥闪,瞥见
n. (Glance)人名;(英)格兰斯]]></trans>
<phonetic><![CDATA[[glɑːns]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>aliase</word>
<trans><![CDATA[n. 别名]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>universal</word>
<trans><![CDATA[n. 一般概念;普通性
adj. 普遍的;通用的;宇宙的;全世界的;全体的]]></trans>
<phonetic><![CDATA[[juːnɪ'vɜːs(ə)l]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>bundle</word>
<trans><![CDATA[n. 束;捆
vt. 捆
vi. 匆忙离开]]></trans>
<phonetic><![CDATA[['bʌnd(ə)l]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>a means of</word>
<trans><![CDATA[一种方式
一种手段]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>issue</word>
<trans><![CDATA[n. 问题;流出;期号;发行物
vt. 发行,发布;发给;放出,排出
vi. 发行;流出;造成…结果;传下]]></trans>
<phonetic><![CDATA[['ɪʃuː; 'ɪsjuː]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>circumstances</word>
<trans><![CDATA[n. 情况(circumstance的复数);环境;情形]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>conversant</word>
<trans><![CDATA[adj. 熟悉的;精通的;亲近的]]></trans>
<phonetic><![CDATA[[kən'vɜːs(ə)nt]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>in the form of</word>
<trans><![CDATA[以…的形式]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>even if</word>
<trans><![CDATA[即使;虽然]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>ambiguous</word>
<trans><![CDATA[adj. 模糊不清的;引起歧义的]]></trans>
<phonetic><![CDATA[[æm'bɪgjʊəs]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>proceed</word>
<trans><![CDATA[vi. 开始;继续进行;发生;行进
n. 收入,获利]]></trans>
<phonetic><![CDATA[[prə'siːd]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>suites</word>
<trans><![CDATA[n. 套房;组曲;餐厅套件;[计] 程序组(suite的复数)]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>format specifier</word>
<trans><![CDATA[]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>prefix</word>
<trans><![CDATA[n. 前缀
vt. 加前缀;将某事物加在前面]]></trans>
<phonetic><![CDATA[['priːfɪks]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>consumption</word>
<trans><![CDATA[n. 消费;消耗;肺痨]]></trans>
<phonetic><![CDATA[[kən'sʌm(p)ʃ(ə)n]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>representation</word>
<trans><![CDATA[n. 代表;表现;表示法;陈述]]></trans>
<phonetic><![CDATA[[,reprɪzen'teɪʃ(ə)n]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>manual effort</word>
<trans><![CDATA[]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>quotation mark</word>
<trans><![CDATA[引号]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>quotation</word>
<trans><![CDATA[n. [贸易] 报价单;引用语;引证]]></trans>
<phonetic><![CDATA[[kwə(ʊ)'teɪʃ(ə)n]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>certain</word>
<trans><![CDATA[adj. 某一;必然的;确信;无疑的;有把握的
pron. 某些;某几个
n. (Certain)人名;(葡)塞尔塔因;(法)塞尔坦]]></trans>
<phonetic><![CDATA[['sɜːt(ə)n; -tɪn]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>operation</word>
<trans><![CDATA[n. 操作;经营;[外科] 手术;[数][计] 运算]]></trans>
<phonetic><![CDATA[[ɒpə'reɪʃ(ə)n]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>handle</word>
<trans><![CDATA[处理
n. [建] 把手;柄;手感;口实
vt. 处理;操作;运用;买卖;触摸
vi. 搬运;易于操纵]]></trans>
<phonetic><![CDATA[['hænd(ə)l]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>in terms of</word>
<trans><![CDATA[依据;按照;在…方面;以…措词]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>hierarchical</word>
<trans><![CDATA[adj. 分层的;等级体系的]]></trans>
<phonetic><![CDATA[[haɪə'rɑːkɪk(ə)l]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>decision</word>
<trans><![CDATA[n. 决定,决心;决议]]></trans>
<phonetic><![CDATA[[dɪ'sɪʒ(ə)n]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>frown</word>
<trans><![CDATA[n. 皱眉,蹙额
vt. 皱眉,蹙额
vi. 皱眉;不同意]]></trans>
<phonetic><![CDATA[[fraʊn]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>customary</word>
<trans><![CDATA[n. 习惯法汇编
adj. 习惯的;通常的]]></trans>
<phonetic><![CDATA[['kʌstəm(ə)rɪ]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>permutation</word>
<trans><![CDATA[n. [数] 排列;[数] 置换]]></trans>
<phonetic><![CDATA[[pɜːmjʊ'teɪʃ(ə)n]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>composition</word>
<trans><![CDATA[n. 作文,作曲,作品;[材] 构成;合成物;成分]]></trans>
<phonetic><![CDATA[[ˌkɒmpəˈzɪʃn]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>priorities</word>
<trans><![CDATA[优先顺序]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>negate</word>
<trans><![CDATA[n. 对立面;反面
vt. 否定;取消;使无效
vi. 否定;否认;无效]]></trans>
<phonetic><![CDATA[[nɪ'geɪt]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>unaltered</word>
<trans><![CDATA[adj. 不变的;未被改变的;照旧的]]></trans>
<phonetic><![CDATA[[ʌn'ɔːltəd; ʌn'ɒl-]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>curly brace</word>
<trans><![CDATA[花括号]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>intersection</word>
<trans><![CDATA[n. 交叉;十字路口;交集;交叉点]]></trans>
<phonetic><![CDATA[[ɪntə'sekʃ(ə)n]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>determinant</word>
<trans><![CDATA[adj. 决定性的
n. 决定因素;[数] 行列式]]></trans>
<phonetic><![CDATA[[dɪ'tɝmɪnənt]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>quirk</word>
<trans><![CDATA[n. 怪癖;急转;借口
n. (Quirk)人名;(英)夸克]]></trans>
<phonetic><![CDATA[[kwɜːk]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>homogeneous</word>
<trans><![CDATA[adj. 均匀的;[数] 齐次的;同种的;同类的,同质的]]></trans>
<phonetic><![CDATA[[,hɒmə(ʊ)'dʒiːnɪəs; -'dʒen-]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>heterogeneous</word>
<trans><![CDATA[adj. [化学] 多相的;异种的;[化学] 不均匀的;由不同成分形成的]]></trans>
<phonetic><![CDATA[[,het(ə)rə(ʊ)'dʒiːnɪəs; -'dʒen-]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>parent</word>
<trans><![CDATA[n. 父亲(或母亲);父母亲;根源
n. (Parent)人名;(法)帕朗;(英、西)帕伦特]]></trans>
<phonetic><![CDATA[['peər(ə)nt]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>parentheses</word>
<trans><![CDATA[n. parenthesis的复数形式]]></trans>
<phonetic><![CDATA[[pə'renθəsɪz]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>transpose</word>
<trans><![CDATA[n. 转置阵
vt. 调换;移项;颠倒顺序
vi. 进行变换]]></trans>
<phonetic><![CDATA[[træns'pəʊz; trɑːns-; -nz-]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>flatten</word>
<trans><![CDATA[vt. 击败,摧毁;使……平坦
vi. 变平;变单调
n. (Flatten)人名;(德)弗拉滕]]></trans>
<phonetic><![CDATA[['flæt(ə)n]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>semantically</word>
<trans><![CDATA[adv. 语义地]]></trans>
<phonetic><![CDATA[[si'mæntikəli]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>implicit</word>
<trans><![CDATA[adj. 含蓄的;暗示的;盲从的]]></trans>
<phonetic><![CDATA[[ɪm'plɪsɪt]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>explicit</word>
<trans><![CDATA[adj. 明确的;清楚的;直率的;详述的]]></trans>
<phonetic><![CDATA[[ɪk'splɪsɪt; ek-]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>method signature</word>
<trans><![CDATA[方法声明(signature有签名的意识)]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>append</word>
<trans><![CDATA[n. 设置数据文件的搜索路径
vt. 附加;贴上;盖章]]></trans>
<phonetic><![CDATA[[ə'pend]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>CamelCase</word>
<trans><![CDATA[骆驼拼写法]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>compromise</word>
<trans><![CDATA[n. 妥协,和解;折衷
vt. 妥协;危害
vi. 妥协;让步]]></trans>
<phonetic><![CDATA[['kɒmprəmaɪz]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>promote</word>
<trans><![CDATA[vi. 成为王后或其他大于卒的子
vt. 促进;提升;推销;发扬]]></trans>
<phonetic><![CDATA[[prə'məʊt]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>adhere</word>
<trans><![CDATA[vi. 坚持;依附;粘着;追随
vt. 使粘附]]></trans>
<phonetic><![CDATA[[əd'hɪə]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>emerge</word>
<trans><![CDATA[vi. 浮现;摆脱;暴露]]></trans>
<phonetic><![CDATA[[ɪ'mɜːdʒ]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>colon</word>
<trans><![CDATA[n. [解剖] 结肠;冒号(用于引语、说明、例证等之前);科郎(哥斯达黎加货币单位)]]></trans>
<phonetic><![CDATA[['kəʊlən]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>deliver</word>
<trans><![CDATA[vt. 交付;发表;递送;释放;给予(打击);给…接生
vi. 实现;传送;履行;投递
n. 投球]]></trans>
<phonetic><![CDATA[[dɪ'lɪvə]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>in the same fashion</word>
<trans><![CDATA[穿同样的装束
以同样的方式]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>concat</word>
<trans><![CDATA[n. 合并多个数组;合并多个字符串]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>scoop</word>
<trans><![CDATA[n. 勺;铲子;独家新闻;凹处
vt. 掘;舀取;抢先获得;搜集]]></trans>
<phonetic><![CDATA[[skuːp]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>sheep</word>
<trans><![CDATA[n. 羊,绵羊;胆小鬼]]></trans>
<phonetic><![CDATA[[ʃiːp]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>cheese</word>
<trans><![CDATA[n. [食品] 奶酪;干酪;要人
adj. 叛变的;胆小的
vt. 停止]]></trans>
<phonetic><![CDATA[[tʃiːz]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>sequent</word>
<trans><![CDATA[n. 结果;相继发生的事
adj. 连续的;其次的;作为结果而产生的]]></trans>
<phonetic><![CDATA[['siːkw(ə)nt]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>evasion</word>
<trans><![CDATA[n. 逃避;回避;借口]]></trans>
<phonetic><![CDATA[[ɪ'veʒn]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>trail</word>
<trans><![CDATA[vt. 追踪;拖;蔓延;落后于
n. 小径;痕迹;尾部;踪迹;一串,一系列
vi. 飘出;蔓生;垂下;拖曳
n. (Trail)人名;(英)特雷尔]]></trans>
<phonetic><![CDATA[[treɪl]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>definite</word>
<trans><![CDATA[adj. 一定的;确切的]]></trans>
<phonetic><![CDATA[['defɪnɪt]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>expression</word>
<trans><![CDATA[n. 表现,表示,表达;表情,脸色,态度,腔调,声调;式,符号;词句,语句,措辞,说法
表达式]]></trans>
<phonetic><![CDATA[[ɪkˈspreʃn]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>as usual</word>
<trans><![CDATA[像往常一样;照例]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>trial</word>
<trans><![CDATA[n. 试验;审讯;努力;磨炼
adj. 试验的;审讯的
n. (Trial)人名;(法)特里亚尔]]></trans>
<phonetic><![CDATA[['traɪəl]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>symbol</word>
<trans><![CDATA[n. 象征;符号;标志]]></trans>
<phonetic><![CDATA[['sɪmb(ə)l]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>target</word>
<trans><![CDATA[n. 目标,指标;(攻击的)对象;靶子
v. 把...作为目标;面向,对准(某群体)
n. (Target)美国塔吉特公司]]></trans>
<phonetic><![CDATA[['tɑːgɪt]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>arithmetic progression</word>
<trans><![CDATA[等差级数,等差数列;[数] 算术级数,算术数列]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>assembly</word>
<trans><![CDATA[n. 装配;集会,集合
n. 汇编,编译]]></trans>
<phonetic><![CDATA[[ə'semblɪ]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>infinite</word>
<trans><![CDATA[n. 无限;[数] 无穷大;无限的东西(如空间,时间)
adj. 无限的,无穷的;无数的;极大的]]></trans>
<phonetic><![CDATA[['ɪnfɪnət]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>obtain</word>
<trans><![CDATA[vt. 获得
vi. 获得;流行]]></trans>
<phonetic><![CDATA[[əb'teɪn]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>subscript</word>
<trans><![CDATA[n. 下标;脚注
adj. 下标的;写在下方的;脚注的]]></trans>
<phonetic><![CDATA[['sʌbskrɪpt]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>particularly</word>
<trans><![CDATA[adv. 特别地,独特地;详细地,具体地;明确地,细致地]]></trans>
<phonetic><![CDATA[[pə'tɪkjʊləlɪ]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>glue</word>
<trans><![CDATA[n. 胶;各种胶合物
vt. 粘合;似胶般固着于]]></trans>
<phonetic><![CDATA[[gluː]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>span</word>
<trans><![CDATA[n. 跨度,跨距;范围
vt. 跨越;持续;以手指测量
n. (Span)人名;(捷)斯潘]]></trans>
<phonetic><![CDATA[[spæn]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>fraction</word>
<trans><![CDATA[n. 分数;部分;小部分;稍微]]></trans>
<phonetic><![CDATA[['frækʃ(ə)n]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>remainder</word>
<trans><![CDATA[n. [数] 余数,残余;剩余物;其余的人
adj. 剩余的;吃剩的
vt. 廉价出售;削价出售
vi. 廉价出售;削价出售]]></trans>
<phonetic><![CDATA[[rɪ'meɪndə]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>permalink</word>
<trans><![CDATA[n.永久链接]]></trans>
<phonetic><![CDATA[[]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>extend</word>
<trans><![CDATA[vt. 延伸;扩大;推广;伸出;给予;使竭尽全力;对…估价
vi. 延伸;扩大;伸展;使疏开]]></trans>
<phonetic><![CDATA[[ɪk'stend; ek-]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>Hash character</word>
<trans><![CDATA[]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>portability</word>
<trans><![CDATA[n. [计] 可移植性;轻便;可携带性]]></trans>
<phonetic><![CDATA[[,pɔːtə'bɪlətɪ]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>continuation lines</word>
<trans><![CDATA[]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>execute</word>
<trans><![CDATA[vt. 实行;执行;处死]]></trans>
<phonetic><![CDATA[['eksɪkjuːt]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>grief</word>
<trans><![CDATA[n.悲痛;忧伤;不幸]]></trans>
<phonetic><![CDATA[[griːf]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>politician</word>
<trans><![CDATA[n.政治家,政客]]></trans>
<phonetic><![CDATA[[pɒlɪ'tɪʃ(ə)n]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>accuse</word>
<trans><![CDATA[vt.控告,指控;谴责;归咎于
vi.指责;控告]]></trans>
<phonetic><![CDATA[[ə'kjuːz]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>abnormal</word>
<trans><![CDATA[adj.反常的,不规则的;变态的]]></trans>
<phonetic><![CDATA[[æb'nɔːml]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>unjust</word>
<trans><![CDATA[adj.不公平的,不公正的;非正义的]]></trans>
<phonetic><![CDATA[[ʌn'dʒʌst]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>veteran</word>
<trans><![CDATA[n.老兵;老手;富有经验的人;老运动员
adj.经验丰富的;老兵的]]></trans>
<phonetic><![CDATA[['vet(ə)r(ə)n]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>victim</word>
<trans><![CDATA[n.受害人;牺牲品;牺牲者]]></trans>
<phonetic><![CDATA[['vɪktɪm]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>curious</word>
<trans><![CDATA[adj.好奇的,有求知欲的;古怪的;爱挑剔的]]></trans>
<phonetic><![CDATA[['kjʊərɪəs]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>incline</word>
<trans><![CDATA[vi. 倾斜;倾向;易于
vt. 使倾斜;使倾向于
n. 倾斜;斜面;斜坡]]></trans>
<phonetic><![CDATA[[ɪn'klaɪn]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>consequence</word>
<trans><![CDATA[n. 结果;重要性;推论]]></trans>
<phonetic><![CDATA[['kɒnsɪkw(ə)ns]]]></phonetic>
<tags>未分组</tags>
<progress>1</progress>
</item><item> <word>offensive</word>
<trans><![CDATA[adj.攻击的;冒犯的;无礼的;讨厌的
n.攻势;攻击]]></trans>
<phonetic><![CDATA[[ə'fensɪv]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>physiology</word>
<trans><![CDATA[n. 生理学;生理机能
[ 复数:physiologies ]]]></trans>
<phonetic><![CDATA[['fɪzɪ'ɑlədʒi]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>reserved way</word>
<trans><![CDATA[含蓄的方式]]></trans>
<phonetic><![CDATA[[]]]></phonetic>
<tags></tags>
<progress>-1</progress>
</item><item> <word>various</word>
<trans><![CDATA[adj. 各种各样的;多方面的]]></trans>
<phonetic><![CDATA[['veərɪəs]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>make reference to</word>
<trans><![CDATA[提到,谈及]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>has nothing to do with</word>
<trans><![CDATA[与……毫无关系]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>compactly</word>
<trans><![CDATA[adv. 简洁地;紧密地;细密地]]></trans>
<phonetic><![CDATA[[kəm'pæktli]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>consider</word>
<trans><![CDATA[vi. 考虑;认为;细想
vt. 考虑;认为;考虑到;细想]]></trans>
<phonetic><![CDATA[[kən'sɪdə]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>tedious</word>
<trans><![CDATA[adj. 沉闷的;冗长乏味的]]></trans>
<phonetic><![CDATA[['tiːdɪəs]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>whet</word>
<trans><![CDATA[n. 磨;开胃物;刺激物
vt. 刺激;磨快;促进]]></trans>
<phonetic><![CDATA[[wet]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>appetite</word>
<trans><![CDATA[n. 食欲;嗜好]]></trans>
<phonetic><![CDATA[['æpɪtaɪt]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>Whetting Your Appetite</word>
<trans><![CDATA[]]></trans>
<phonetic><![CDATA[]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>distributed</word>
<trans><![CDATA[adj. 分布式的,分散式的]]></trans>
<phonetic><![CDATA[[dɪ'strɪbjʊtɪd]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>extensive</word>
<trans><![CDATA[adj. 广泛的;大量的;广阔的]]></trans>
<phonetic><![CDATA[[ɪk'stensɪv; ek-]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>rapid</word>
<trans><![CDATA[n. 急流;高速交通工具,高速交通网
adj. 迅速的,急促的;飞快的;险峻的]]></trans>
<phonetic><![CDATA[['ræpɪd]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>portable</word>
<trans><![CDATA[adj.手提的,便携式的;轻便的
n.手提式打字机
可移植]]></trans>
<phonetic><![CDATA[['pɔːtəb(ə)l]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>recognition</word>
<trans><![CDATA[n.识别;承认,认出;重视;赞誉;公认]]></trans>
<phonetic><![CDATA[[rekəg'nɪʃ(ə)n]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>instruction</word>
<trans><![CDATA[n.指令,命令;指示;教导;用法说明]]></trans>
<phonetic><![CDATA[[ɪn'strʌkʃ(ə)n]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>physics</word>
<trans><![CDATA[n.物理学;物理现象]]></trans>
<phonetic><![CDATA[['fɪzɪks]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>psychology</word>
<trans><![CDATA[n.心理学;心理状态]]></trans>
<phonetic><![CDATA[[saɪ'kɒlədʒɪ]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>manner</word>
<trans><![CDATA[n. 方式;习惯;种类;规矩;风俗
n. (Manner)人名;(德、芬、瑞典)曼纳]]></trans>
<phonetic><![CDATA[['mænɚ]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>attached</word>
<trans><![CDATA[adj. 附加的;依恋的,充满爱心的
v. 附上(attach的过去分词)]]></trans>
<phonetic><![CDATA[[ə'tætʃt]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>institution</word>
<trans><![CDATA[n.制度;建立;(社会或宗教等)公共机构;习俗]]></trans>
<phonetic><![CDATA[[ɪnstɪ'tjuːʃ(ə)n]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>disappointment</word>
<trans><![CDATA[n. 失望;沮丧]]></trans>
<phonetic><![CDATA[[,dɪsə'pɔɪntmənt]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>optimize</word>
<trans><![CDATA[vt.使最优化,使完善
vi.优化;持乐观态度]]></trans>
<phonetic><![CDATA[['ɒptɪmaɪz]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>discipline</word>
<trans><![CDATA[n. 学科;纪律;训练;惩罚
vt. 训练,训导;惩戒
[ 过去式:disciplined 过去分词:disciplined 现在分词:disciplining ]]]></trans>
<phonetic><![CDATA[['dɪsəplɪn]]]></phonetic>
<tags></tags>
<progress>1</progress>
</item><item> <word>academic</word>
<trans><![CDATA[adj. 学术的;理论的;学院的
n. 大学生,大学教师;学者]]></trans>
<phonetic><![CDATA[[,ækə'dɛmɪk]]]></phonetic>
<tags></tags>
<progress>1</progress>