9k 8 分鍾

# 6.13 阅读写作课 spawn /spɔːn/ 产卵,引发,引起,导致,造成 endorsement /ɪnˈdɔːsmənt/ 背书;(公开的) 赞同,支持,认可,宣传,代言 pebble 鹅卵石 palate /ˈpælət/ 上颚,味觉 velocity 速度 vicinity 附近的 ethnic /ˈeθnɪk/ 民族的,种族的 in relation to = for 关于...,就... 而论 utterance 用言语的表达 be spoiled 被溺爱 pamper /ˈpæmpə(r)/ 娇惯 besides vs in addition:besides 递进,in...
6.3k 6 分鍾

# 剑 12 Test 8 Section 2 The Sheepmarket is one of the main centres for art and history in the whole of the country. If you look at our map, you'll see some of the main attractions there. Most visitors start from Crawley Road, at the bottom of the map. Reynolds House 出现,第一题开始 The Reynolds House...
1.4k 1 分鍾

# 地图题 路口:junction,intersection,crossing 拐角:at the bend of,road bends at 尽头:at the end of,road ends at 对面:right opposite,face,towards,across ... 路 from ... 地,on the other side of ... 路 from ... 地 门:door,side,entrance,entry,access,way...
5.9k 5 分鍾

# 阅读写作课 to some extend 在某种程度上 find accommodation == find somewhere to live percentage:the percentage of percent: 不能接冠词,连接数字,不可数 小作文数据表达:(),数值做主语,by + 数值,at + 数值 小作文时间分配建议 2-3min 读题图,选数据 2-3min 分段、总结 15min 写作 详见 p92 GMF:genetic modifing food crop rotation:作物轮作 pesticide use:使用农药 rear adj....
2.1k 2 分鍾

# 写作阅读复习 P15 ex.6 范文研读 The greatest problem for young people aged 18 to 34 is forming friendships,a problem experienced by 46 percent of the people in this age group. 第二段首先描述了第一个年龄段 18-34 岁的人群最大的一体化问题 making friends,紧接着标注句部分很巧妙地说明了这个问题在部分人群中所占比。 However,only 36 percent of 35-to 54-year-olds find it...
3.9k 4 分鍾

# 阅读 Scanning 快速定位 T/F/NG 判断题 Table Completion 表格填空题 Vocabulary:problem & trouble;affect & effect T/F/NG(难度一般,适合先做) 大致步骤 划 关键词,比如大写单词(专有名词),时间等;一般出现定位词的句子以及该句前后相邻两句中必有一个考点句,除非这个 “定位词” 一直出现则说明它并不是定位词而是一个线索 猜 出题点,比如出现比较级,only、all 等有极端含义的词,一般为考点词 扫 定位,将考点与第一步中定位的句子对照。。。 判...
4.7k 4 分鍾

# 简介 和队列一样,栈 stack 也是一种线性序列结构,其存放的元素也是按照线性逻辑次序排列的,然而,与一般的线性结构相比,栈的操作仅限于逻辑上特定的一端,即新元素只能从栈的一端插入,也只能从这一端删除已有的元素。栈中允许元素插入和删除的一端称为栈顶,禁止操作的盲端称为栈底。于是,插入元素和删除元素就分别成为入栈和出栈。 // 常规操作#include <iostream>#include <stack>#include <cstdio>using namespace std;stack<int>...
3.3k 3 分鍾

# 简介 队列 queue 是一种线性的序列结构,其存放的元素按照线性的逻辑次序排列,但与一般的线性序列结构如数组或向量相比,队列的操作只限于逻辑上的两端,即新元素只能从队列的一段插入(入队),并且只能从队列的另一端删除已有的元素(出队)。允许队列插入的一端称为队尾,允许队列删除的一端称为队头。 // 常规操作#include <iostream>#include <queue>#include <cstdio>using namespace std;queue<int> myQueue;int...
1.5k 1 分鍾

# 简介 向量 vector 是可以改变其大小的线性序列容器,像数组一样,向量使用连续的空间存储元素,这表明向量可以像数组一样通过下标来访问其元素,但不同于数组的是,向量的大小可以动态变化。 // 常用操作#include <iostream>#include <vector>#include <cstdio>using namespace std;vector<int> myVector;int main(){ for (int i = 0; i < 5; ++i)...
18k 16 分鍾

# 说明 构建决策树的算法是递归算法,在 functions.cpp 中定义的函数 buildDecisionTree() 中实现。该算法的工作原理如下: if the sub-table passed to the algorithm is empty return NULL; // since there is no data in the table if the sub-table passed to the algorithm is homogeneous (if all the rows have the same value for the last column) mark...