摘要: 一、先题后文(只看题干,不看选项) 1、圈出题干的关键信息,判断题目类型 2、题干中出现两次及两次以上的实词为主题词(注意同义替换) 3、题干中出现两次及两次以上问某人的观点,初步掌握此为作者的代言人 4、注意题干中出现的色彩词 :一般情况下,态度题的题干中有attitude或think, beli 阅读全文
posted @ 2021-09-28 11:33 沉迷代码小新 阅读(129) 评论(0) 推荐(0)
摘要: 恢复内容开始 二、定位(聚焦信息) (一)、定位原则 1、注意题干中出现的段落标识 2、注意夹击准则的应用 3、具体定为准则:篇章——段落——点 4、三点定位准则 1)主谓宾(重要信息的主谓宾) 2)词汇的三个考点:主题词(优先)、色彩词(一致)、逻辑词(重点) 5、摈弃无效信息 1)不表达感情色彩 阅读全文
posted @ 2021-09-29 12:07 沉迷代码小新 阅读(194) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h>#include <stdio.h>#include <stdlib.h>#include <cstdlib>#define MaxSize 10using namespace std;//顺序表的定义、插入、删除、查询typedef struct { 阅读全文
posted @ 2021-07-14 20:56 沉迷代码小新 阅读(1988) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h>#include <stdio.h>#include <stdlib.h>#include <cstdlib>#define MaxSize 10using namespace std;typedef struct { int data[MaxSize 阅读全文
posted @ 2021-07-13 21:23 沉迷代码小新 阅读(941) 评论(0) 推荐(0)
摘要: #include<stdio.h>#include <stdlib.h>#include <cstdlib>#define MaxSize 10//顺序表的插入typedef struct { int data[MaxSize]; int length;}SqList;void InitList(S 阅读全文
posted @ 2021-07-12 20:47 沉迷代码小新 阅读(531) 评论(0) 推荐(0)
摘要: #include<stdio.h>#include <stdlib.h>#include <cstdlib>#define InitSize 10 //定义初始typedef struct{ int *data; //指示动态分配数组的指针 int Maxsize;//顺序表的最大容量 int le 阅读全文
posted @ 2021-07-12 13:31 沉迷代码小新 阅读(255) 评论(0) 推荐(0)
摘要: #include<stdio.h>#define Maxsize 50 //定义最大长度typedef struct{ int data[Maxsize];//用静态的数组来存放数据元素 int length; //顺序表的当前长度}SqLight;//顺序表的类型定义void InitList(S 阅读全文
posted @ 2021-07-11 21:55 沉迷代码小新 阅读(160) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h>#define ios ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);using namespace std;const int N = 1e8;int cnt1[N], cnt2[N];int a 阅读全文
posted @ 2021-07-11 21:41 沉迷代码小新 阅读(34) 评论(0) 推荐(0)
摘要: nevertheless 仍然不过; nonetheless 尽管如此,但是; whereas 然而,但是,尽管; despite 虽然尽管;——despite the fact that......(尽管事实是) les 唯恐,免得; unless 除非,如果不; but 但是; while 尽管 阅读全文
posted @ 2021-07-11 10:12 沉迷代码小新 阅读(818) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> #define MaxSize 100 using namespace std; //哈夫曼树结点结构 typedef struct { int weight;//结点权重 int parent, left, right;//父结点、左孩子、右孩子在数 阅读全文
posted @ 2019-12-30 10:54 沉迷代码小新 阅读(180) 评论(0) 推荐(0)