《异界逃离计划》

《异界逃离计划》

作者注:原本只是一个有趣的魔法故事,后来突然被注入了某些历史要素,在这个时间点看来,尤其有效于讽刺美国的种族主义。

主角:以美洲印第安语为主修的小语种学生

从主角出发的主视角:

  1. 穿越至异世界
  2. 发现该异世界原住民竟然讲印第安语,而且该异世界属于盛传魔法的土著和小商品经济的交杂时代,听起来却是非常多年都没有进步过了,而且尽管魔法的最后一次在数百年前了,但却仍然被现在的甚至是普通人民盛传。
  3. 然而在交往和了解原住民的过程中发现,尽管他们将神奇的魔法无数无数遍的反复夸张的述说给主角听,但主角明显感受到原住民对魔法抱有一种紧张和恐惧的真实情感。
  4. 随后在一次机缘巧合中发现了小溪旁的一处残骸,而这个残骸里睡着一只狐狸,狐狸旁边留有一张被烧焦的字条,上面写着不完整的英语“… Burn it …”。
  5. 在湖边轻松的念出了这句残缺的咒语,一颗火球砸到湖中,一声巨响将狐狸吵醒,一番互动后,此后这只狐狸就一只粘着主角了。
  6. 鉴于原住民对于魔法的避之不及,便一直隐藏魔法这件事。
  7. 然而在一次危急情况中不得已暴露了魔法,被盛情请入宫中。
  8. 一堆好话和阿谀奉承,然而却是一场鸿门宴。
  9. 将主角抓住后,国王竟同样有一位会魔法的随从,使用了一句魔咒“**Go (此处包含模糊不清的发音) Hell(此处甚至有卷舌音)**”,扔进了又一个异空间,此时,而在异空间中,存在着原住民口中的“恶魔”。
  10. 。。。。。。(总之剧情发展,主角探索了各个用于囚禁这些“恶魔”的异空间,和各种恶魔结识,和狐狸发展了感情,学习了更多的魔法语句)
  11. 和“恶魔”签订契约,答应出去之后要将他们释放,之后和恶魔使用了特殊手段,打开了只能放主角和狐狸出去的门。
  12. 在恶魔的口中,发现狐狸居然就是原住民口中的“本源的入口”,在特殊时段,特殊地点,特殊角度,就能透过狐狸身体上自然散发的魔法雾气看到世界的真相。“只需一瞥,便可看见金银财宝,便可变身成神,便可使天崩地裂。”
  13. 然而主角看到的,原本外面是郁郁葱葱的绿林,而真相中却只有遍布死骨的荒野。
  14. 而主角自己,也在雾气中呈现出憔悴枯萎的迹象。
  15. 当天色大亮,主角意识到这个世界形成的真相:这群在大屠杀中死掉的原住民的集体幻想。而那些所谓的魔法,不过是过去记忆的恐惧扎根在灵魂深处。
  16. 主角决定逃离,而非停留在此处化作冤魂。
  17. 然而狐狸就是世界的锚点,是不可能离开此处的。可已学会化身成人的狐狸却想留住主角。
  18. (总之就是爱恨纠葛,不过本来最开始的灵感也是主角和狐狸谈恋爱的一两个片段开始的)
  19. 最终主角逃离,狐狸苦苦挽留,却毫无用处。
  20. 回到现实世界,忘记了经历的一切,世界又回到了那个穿越的瞬间,与之前不同的是,撞到了一个女孩,说出了一句本不会成真的魔咒。
  21. 也许生效了。

PS: 也许本来就是一个言情故事,但是又整合了太多思想上的’脱口而出’,这使整个故事太过复杂,也许并不会好看。

Get Mode and Multiplicy in Collection

project3-2

具体实现代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
int getMode(int nums[], int n, int* maxCount){
int i = 0;
*maxCount = 1;
int index = 0;
while(i < n - 1){
int tempCount = 1;
int j;
for(j = i; j < n - 1; j++){
if(nums[j] == nums[j+1]){
tempCount++;
}else{
break;
}
}
if(*maxCount < tempCount){
*maxCount = tempCount;
index = j;
}
i = ++j;
}
return index;
}

测试数据生成函数如下:

1
2
3
4
5
6
7
8
9
int* randomCollection(int n, int max){
srand(time(0));
int* coins = new int[n];
for(int i = 0; i < n; i++){
coins[i] = rand() % max;
}
return coins;
}

测试样例展示函数如下:

1
2
3
4
5
6
7
void printCollection(int coins[], int n){
cout << "[";
for(int i = 0; i < n - 1; i++){
cout << coins[i] << ",";
}
cout << coins[n-1] << "]" << endl;
}

测试主函数如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>
#include <algorithm>
#include <unordered_map>
using namespace std;

int main()
{
int count = 300, max = 500, maxCount = 0;
int* list = randomCollection(count, max);
printCollection(list, count);
sort(list, list + count);
printCollection(list, count);
cout << "the Mode is:" << list[getMode(list, count, &maxCount)] << ", the Multiplicity is:" << maxCount << endl;
return 0;
}

生成测试结果展示

1
2
3
4
5
$g++ -o main *.cpp
$main
[120,138,326,318,484,329,431,476,26,11,442,158,184,142,332,381,321,205,278,40,492,415,292,205,68,96,188,209,260,4,355,232,142,33,50,126,363,333,454,241,345,248,251,29,390,84,263,64,289,41,104,133,456,396,339,376,493,379,85,105,383,293,189,25,326,91,4,41,425,310,282,122,59,34,151,301,470,414,365,259,308,322,244,116,70,435,493,415,314,430,372,197,223,61,75,402,5,79,295,430,389,78,404,300,464,55,454,434,322,319,45,482,493,141,98,64,77,443,331,391,374,204,441,449,117,16,203,122,447,499,404,188,429,308,341,393,216,295,179,38,466,76,20,460,69,470,376,146,414,59,390,140,263,331,89,233,199,145,207,498,144,464,38,73,272,379,318,340,174,349,230,493,277,102,305,346,73,33,493,339,92,383,479,208,66,420,441,117,65,0,115,61,464,153,134,89,385,304,429,59,153,160,404,430,114,209,129,39,242,122,378,187,357,209,395,275,482,188,392,399,188,359,461,153,12,447,94,249,252,23,161,405,35,65,188,2,127,317,41,221,291,420,408,148,481,155,423,463,343,167,363,384,26,176,389,390,123,483,140,375,358,301,133,246,366,321,248,345,490,289,67,281,61,475,281,43,483,56,6,326,223,221,62,249,397,303,139,21,286,131,248,497,432,381,243,151,54,491,496,396]
[0,2,4,4,5,6,11,12,16,20,21,23,25,26,26,29,33,33,34,35,38,38,39,40,41,41,41,43,45,50,54,55,56,59,59,59,61,61,61,62,64,64,65,65,66,67,68,69,70,73,73,75,76,77,78,79,84,85,89,89,91,92,94,96,98,102,104,105,114,115,116,117,117,120,122,122,122,123,126,127,129,131,133,133,134,138,139,140,140,141,142,142,144,145,146,148,151,151,153,153,153,155,158,160,161,167,174,176,179,184,187,188,188,188,188,188,189,197,199,203,204,205,205,207,208,209,209,209,216,221,221,223,223,230,232,233,241,242,243,244,246,248,248,248,249,249,251,252,259,260,263,263,272,275,277,278,281,281,282,286,289,289,291,292,293,295,295,300,301,301,303,304,305,308,308,310,314,317,318,318,319,321,321,322,322,326,326,326,329,331,331,332,333,339,339,340,341,343,345,345,346,349,355,357,358,359,363,363,365,366,372,374,375,376,376,378,379,379,381,381,383,383,384,385,389,389,390,390,390,391,392,393,395,396,396,397,399,402,404,404,404,405,408,414,414,415,415,420,420,423,425,429,429,430,430,430,431,432,434,435,441,441,442,443,447,447,449,454,454,456,460,461,463,464,464,464,466,470,470,475,476,479,481,482,482,483,483,484,490,491,492,493,493,493,493,493,496,497,498,499]
the Crowd is:188, the Multiplicity is:5

comparison of BiTree

递归对比二叉链结构的二叉树

数据结构如下:

1
2
3
4
5
template<class T>
struct Node {
T data;
Node* lchild, * rchild;
};

实际方法如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
using namespace std;

bool isEqual(Node<int>* bt1, Node<int>* bt2) {
if (bt1 == NULL && bt2 == NULL)//正确的出口
return true;
else if (bt1 == NULL || bt2 == NULL)
return false;
else {
cout << bt1->data << "," << bt2->data << endl;
if (bt1->data != bt2->data)
return false;
return isEqual(bt1->lchild, bt2->lchild) && isEqual(bt1->rchild, bt2->rchild);
}
}

生成测试二叉树函数如下:

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
//创建二叉树
//根据平衡二叉树规则生成
Node<int>* CreateBTtree(int a[], int n)
{
Node<int>* root, * c, * pa = NULL, * p;
int i;
root = new Node<int>;
root->data = a[0];
root->lchild = root->rchild = NULL;
for (i = 1; i < n; i++)
{
p = new Node<int>;
p->lchild = p->rchild = NULL;
p->data = a[i];
c = root;
while (c)
{
pa = c;
if (c->data < p->data) //根节点小于待插入节点
c = c->rchild; //往右遍历
else //根节点大于待插入节点
c = c->lchild; //往左遍历
}
if (pa->data < p->data)
pa->rchild = p; //右放
else
pa->lchild = p; //左放
}
return root; //返回根节点
}

测试函数:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
void test() {
int a[8] = { 5, 3, 7, 2, 4, 6, 8, 9 };
int b[8] = { 5, 3, 7, 2, 4, 6, 8, 15 };
int c[7] = { 5, 3, 7, 2, 4, 6, 8 };
int d[8] = { 5, 3, 7, 2, 4, 6, 8, 1 };
Node<int>* bt1 = CreateBTtree(a, 8);
Node<int>* bt2 = CreateBTtree(a, 8);
Node<int>* bt3 = CreateBTtree(b, 8);
Node<int>* bt4 = CreateBTtree(c, 7);
Node<int>* bt5 = CreateBTtree(d, 8);
cout << "A and B Equal or Not : " << (isEqual(bt1, bt2) ? "Equal" : "Not Equal") << endl;
cout << "A and C Equal or Not : " << (isEqual(bt1, bt3) ? "Equal" : "Not Equal") << endl;
cout << "A and D Equal or Not : " << (isEqual(bt1, bt4) ? "Equal" : "Not Equal") << endl;
cout << "A and E Equal or Not : " << (isEqual(bt1, bt5) ? "Equal" : "Not Equal") << endl;
}

输出测试:

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
//output
5,5
3,3
2,2
4,4
7,7
6,6
8,8
9,15
A and C Equal or Not : Not Equal
5,5
3,3
2,2
4,4
7,7
6,6
8,8
9,empty
the nodes count not equal
A and D Equal or Not : Not Equal
5,5
3,3
2,2
empty,1
the nodes count not equal
A and E Equal or Not : Not Equal

G:\GithubProjects\C++\TrashCodes\Debug\TrashCodes.exe (进程 17836)已退出,代码为 0。
要在调试停止时自动关闭控制台,请启用“工具”->“选项”->“调试”->“调试停止时自动关闭控制台”。
按任意键关闭此窗口. . .

QuickSort-快速排序


QuickSort

具体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

#include <iostream>
#include <vector>
#include <cstdlib>
#include <ctime>
#include <sstream>
#define random(a,b) (rand()%(b-a)+a)
using namespace std;

//vector作为局部变量是不被允许返回的, 当需要处理一个vector并得到处理结果, 必须外部输入一个vector引用。
bool intRandomRange(vector<int>& res, int min, int max, int count) {
srand((int)time(0));
for (int i = 0; i < count; i++)
{
res.push_back((int)random(min, max));
}
return true;
}
//使用stringstream转换生成string, 用于测试
string vector2string(vector<int>& vec) {
stringstream ss;
for (int i = 0; i < vec.size(); ++i)
{
if (i != 0)
ss << ",";
ss << vec[i];
}
return ss.str();
}
bool contrastByOrder(int left, int right, bool bigger, bool equal) {
if (equal)
if (bigger)//升序比较
return left >= right;
else
return left <= right;
else
if (bigger)
return left > right;
else
return left < right;

}

//递归式快排_主体
int quickSort_main(vector<int>& vec, int left, int right, bool ascending) {
int mid = left++;
while (left <= right) {
while (left <= right && contrastByOrder(vec[right], vec[mid], ascending, false))// vec[mid] < vec[right]|ascending = true;
right--;
if (left <= right) {
swap(vec[mid], vec[right]);
mid = right;//复位, 确保该轮中对比的数据仍不变
}
while (left <= right && contrastByOrder(vec[mid], vec[left], ascending, true))// vec[left] <= vec[mid]|ascending = true;
left++;
if (left <= right) {
swap(vec[mid], vec[left]);
mid = left;//复位
}
}
return mid;
}
//递归式快排_递归体
void quickSort_Rp(vector<int>& vec, int left, int right, bool ascending) {
if (left > right)//递归出口
return;
int mid = quickSort_main(vec, left, right, ascending);
quickSort_Rp(vec, left, mid - 1, ascending);
quickSort_Rp(vec, mid + 1, right, ascending);
}
//递归式快速排序_入口
bool quickSort(vector<int>& vec, bool ascending) {
int count = vec.size();
if (count <= 1)//无需排序的状态
return false;
quickSort_Rp(vec, 0, vec.size() - 1, ascending);
return true;
}

int main()
{
vector<int> test;
intRandomRange(test, 0, 10, 10);
cout << vector2string(test) << endl;
if (quickSort(test, false))
cout << vector2string(test) << endl;
else
cout << "No Need to Quick Sort" << endl;
}

考研英语小作文

考研英语小作文

考试范围

应用文写作 100字
  • 通知
  • 信函
  • 其他 (基本没考,但还是有一定的概率)
评分标准

第五档:很好的完成了试题规定的任务

  • 含所有要点
  • 语法结构和词汇要丰富
  • 语法错误极少(1处
  • 多种衔接手段
    • 代词的使用
    • 同义替换
    • 连接性词语的使用
      • although, while, however, therefore, equally important, finally, above all.
    • 并列结构
      • and, or
    • 关键词复现
  • 格式,语域
    • 书信格式等等
    • 一般使用正规的语法和单词
      • 不要用gonna, I’m等

总论指导

  • 积累词汇
  • 练习写作
  • 批改验证

2010 英语二

Directions:

  You have just come back from the U.S. as a member of a Sino-American cultural exchange program. Write a letter to your American colleague to

  1) Express your thanks for his/her warm reception;

  2) Welcome him/her to visit China in due course.

  You should write about 100 words on ANSWER SHEET 2.

  Do not sign your own name at the end of the letter. Use “Zhang Wei” instead.

  Do not write your address. (10 points)

笔记

  • Sino-American cultural exchange program 中美文化交流项目
    • job-training program 实训项目
  • colleague n. 同事
    • college n. 大学
  • warm reception 热情接待
    • receptionist n. 接待人员
    • reception desk 接待处
  • in due course 在合适的时候

作文要求

  1. 开头表示感谢
    • **I am indeed obliged to you for **your warm reception and generous help.
      • 我很感谢你的温暖接待和慷慨帮助
  2. 邀请他适当的时候来中国游玩
  3. 不要使用真名,而是写 Zhang Wei
  4. 不用写地址

2005 英语一

笔记

  • get a job as an editor for the magazine

  • what you expected 你所期望的

  • quit = leave = depart = resign v. 辞职

    • exit = departure = regination n. 辞职
  • state v. 陈述,阐述,表述

    • joint statement 联合声明
  • apology n. 道歉

    • apologize / apologise v. 道歉
    • make an apology

作文要求

辞职信

  1. 开头道歉
  2. 表示离职原因
  3. About 100 words
  4. use “Li Ming” Instead
  5. no need to write address

2006 英语一

笔记

  • Project Hope 希望工程
  • offer financial aid 资助 / 提供经济援助
  • in a remote area 在一个遥远的地区
  • the department concerned 有关部门
    • department n. 部门;系
  • candidate n. 人选,候选
  • specify v. 明确列出
    • specific = concrete adj. 明确的
    • benefit 益处

作文要求

2007 英语一

考研词汇精讲

政治法律类词汇:

Unit1 司法类

  • prosecute = sue v.起诉

    • prosecute / sue sb. for sth.
    • prosecution n. 起诉
    • prosecutor n. 检察官,公诉人
    • suit = lawsuit n. 诉讼
      • a federal class-action lawsuit 联邦集体诉讼
  • accuse = charge v. 指控; 指责; 控诉

    • accuse sb. of sth.

    • charge sb. with sth.

    • accusation n. 指控

  • landowner n. 土地所有人

    • homeowner 房产所有人

    • carowner 汽车所有人

    • prosecute the landowner for sth.

    • manufacturer n. 制造生产商

  • claimant = plaintiff n. 原告

    • claim v./n. 索要,索取,索赔,主张,声称
    • complaint v. 抱怨;投诉
      • complaint n. 抱怨
  • defendant n. 被告

    • defend v. 为…辩护;保卫,保护;证明…合理/合法/合情
      • justify v. 辩护
  • justified adj. 合理的

    • attack v. 攻击;抨击
  • justice n. 大法官(美国最高法院的法官)

    • judge n. 法官(除大法官以外的法官) v. 判断
      • judgement n. 判断
      • judicial adj. 司法的
        • the judicial system 司法制度
      • jurisdiction n. 司法
      • prejudice n.偏见,成见
        • 该词基于词根==jud==构成,可以理解为在获得充分证据之前的提前判断
  • just 、fair 、equal

    • just -> justice 大法官;正义
    • fair adj. 公平的 n. 交易会;博览会;集市
      • Guangzhou Export Communities Fair 广州出口商品交易会
      • unfair adj. 不公平的
      • fair play 公平操作,规则公平
    • equal adj. 平等的
      • All men are created equal
      • equality n. 平等
      • equally big surprise 同样大的惊喜
      • equally big habitat 同样大的栖息地
      • equivalent adj. 等同于,相当于
        • be equivalent to
          • the Chinese equivalent of the American Congress is the National People’s Congress
        • equation n. 等式,方程式
  • jury n. 陪审团

    • juror n. 陪审员
    • the jury system 陪审团制度
  • lawyer(英)= attorney(美) n.律师

  • dispute n. / v. 争议

    • repute n.名誉

    • reputed adj.声名远扬;普遍认为

    • reputation n.名声

      • he has a reputation for slacking. 他有懒散的名声。
    • a disputed issue 一个有争议的问题

    • provoke / spark a dispute 引起一个争议

    • resolve the dispute / controversy 解决争议

    • sth. has long been in dispute 某事一直以来备受争议

    • sth. is beyond dispute. 没有争议

  • controversy n. 争议

    • contrary adj.相反的
      • **on the contrary 恰恰相反的是 **
    • **controversial adj.有争议的 **
  • resort v. 诉诸

    • resort / turn to the court 诉诸法律
  • preside v. 主持

    • president 主席;总统;行长;校长;总裁n.

    • preside over sth. 主持某事

    • preside over a meeting / trial 主持一场会议/审判

      • the trail of sb. 对某人的审判/审讯
  • argument n. 争吵;观点

    • argue v. 主张,认为;争吵

      • It might be argued that … 一些人认为…
    • quarrel n./v. 吵架

  • debate n./v. 争论;辩论

    • parliamentary debate 国会辩论
    • a nationwide debate 全国范围的辩论
  • contest n. 抗辩;竞赛

    • four contested provisions / clauses 四项抗辩(有异议的)条款
    • English contest 英语竞赛
    • English speech contest 英语演讲竞赛
  • commit v.犯下

    • commit a crime 犯罪
    • commit a mistake 犯错
    • commit a suicide 自杀
  • crime n. / v. 犯罪

    • criminal n. 罪犯
      • criminal behavior 犯罪行为
  • suspect n. 嫌疑人; v. 怀疑

    • arrest the suspect 抓捕嫌疑人
  • sin n. 罪恶

    • Gambling was broadly considered a sin. 赌博曾被广泛认为是一种罪恶。
  • blunder n.(无意酿下的)大错

    • blind adj. 盲的
  • adaptation blunders 适应方面的错误

    • The move was seen / considered as a blunder. 这次举动被视为一个错误。
  • gamble n. 赌博

    • game n. 游戏
  • corruption n. 腐败

    • prosecute the governor for corruption
  • bribery n. 贿赂

  • theft n. 盗窃

  • fabricating sth. 编造某事 (动名词)

    • The panel was accused of fabricating data. 这个小组被指控伪造数据
  • fraud n. 欺诈

  • hijack v. 劫持

    • hijacking n. 劫持
    • hijack social media to apply pressure on the businesses 劫持社交媒体来对商家施加压力
  • murder n. 谋杀

  • consipiracy n. 密谋

  • assault / attack v. 袭击

    • a hacker assault 一次黑客袭击
    • assault on teachers / children
  • decision = verdict n. 决定;判决

    • ruling n.【最高法院的】裁决;裁定
      • a sweeping ruling 一个一刀切的裁决
        • sweep 拖
          • sweep a floor 拖地
      • the courts’ ruling 该法院的裁定
      • the judge / justice rules that …
      • the law / act / bill / order rules that …
    • through trial, the judge make a decision
  • arbiter n. 仲裁者

    • we should not let others be arbiters of our beauty.
  • evidence = proof n. 证据

    • evident adj. 清楚的
    • prove v. 证明
  • confirm v. 确认

    • confirmation n. 确认

    • confirm that he is the father of the kid.

    • recent court decisions have confirmed the right of all children.

  • approve v. 批准,审批;赞同

    • disapprove 不同意
    • approve of sth.
    • approve of a contract.
    • approve of a budget.
    • approve of a drug.
  • overturn v. 撤销;推翻

    • overturn the decision 推翻了这个判决
    • overturn the prior decision 推翻了之前的判决
    • guilty verdict / decision / ruling 有罪判决
    • innocent verdict / decision / ruling 无罪判决
      • cent n. 美分
  • invalidate v. 使无效

    • invalid adj. 无效的

      • invalid user name
    • invalidate the law / bill / act / rule

  • precede v. 先于,优先于

    • federal laws precedes state laws.
    • Ming Dynasty preceded Qing Dynasty.
  • conviction n. 定罪

    • be exempt from conviction 免于定罪
    • The supreme court has overturned the corruption conviction of a former governor.
  • trial n. 审判

  • sentence v. 宣判

    • sentence sb. to death
    • sb. was sentenced in imprison
    • sentence sb. forced community service
  • imprison v. 入狱

  • release v. 释放

  • appeal v. 上诉,申诉

    • appeal to 申诉,上诉,呼吁
      • appeal to a higher court 上诉到更高一级法院
  • examine v. 认真检查;仔细检查

  • tell A from B 将A和B区分开来

    • It can be / seems / is difficult to tell good information from bad.
    • differentiate v. 区别
      • differentiate between a credible man and a dishonest man.
  • discriminate v. 歧视

    • discriminate against sb. 歧视某人
    • discrimination n. 歧视
  • fine n. / v. 罚款;惩罚 adj. 好的

    • finance n. 财政;金融 v. 拨款,资助

      • finance the project
      • finance his education
    • lower fines

    • he received lower fines.

  • punish v. 惩罚

    • punishment n. 惩罚
  • penalty n. 惩罚

    • penalize v. 惩罚
    • penetrate v. 刺穿
    • pen n. 钢笔
    • pin n. 大头针
    • pain n. 疼;痛
  • sanction n. 制裁;处罚

    • impose sanctions against Korea / Iraq 实施制裁
    • lift the sanctions against sb. 解除制裁
  • violate v. 违反

    • violate the rule / law / bill / act / regulation
      • follow the rule / law / bill / act / regulation
    • violate the constitution
    • violate one’s privacy
    • violence n. 暴力
    • violent adj. 猛烈的
  • dismiss v. 不考虑

    • dismiss one’s proposal 驳回某人的提议
    • dismiss that possibility entirely 完全不考虑那种可能性
    • It has been dismissed by the supreme court.
  • abolish v. 废除

    • abolition n. 废除

      • the abolition of slavery 奴隶制的废除
    • abortion n. 流产

    • abolish an entire class of patents. 废除一整类的专利权

  • exempt v. 豁免

    • be exempt from
  • court n. 法院,法庭;球场;宫廷,朝廷

    • food court 美食街
    • resort to the court 诉诸法律
    • the Supreme Court 最高法院
  • chancellor n. 大臣;法官

    • the socially concerned chancellor (2014.Text1.)心系社会的大臣
  • witness v. 目击,见证;n. 目击者,证人

    • wit n. 智慧

    • wisdom n. 智慧

    • widow n. 寡妇

    • The period between A and B witnessed sth.

  • hearing n. 听证会

    • conduct public hearing 举行公众听证会
    • a cout hearing 庭审
  • plead v. 恳请

    • plead for sth. = ask for sth. = appeal for sth. 恳求,请求
    • plead for rate relief 恳求降价
  • rights and obligations 权利与义务

    • the right to sth.

      • the right to private property 私有财产权
      • the right to physician-assisted suicide 安乐死权
    • oblige = force = compel v. 逼迫,迫使

      • oblige / force / compel sb. to do sth. 逼迫某人做某事
        • he was compelled to leave / resign / quit. 他被迫离职
      • compulsory adj. 义务的,强制的
        • compulsory education 义务教育
        • a compulsory internet driver’s license
          • license n. 许可证,执照
        • compulsory courses 必修课
    • obligation = liability = responsibility = duty n. 义务

      • shoulder the responsibility 肩负起这份责任

      • legal liability 法律责任

      • protect the manufacturer from legal liability 保护开发商免于担负法律责任

      • liable adj. 负责的

        • be liable for = be responsible for 对…负责
        • be liable to do sth. = tend to do sth. = be inclined to do sth. 倾向于做某事
  • patent n. 专利(权)

    • patent experts 专利权方面的专家
    • grant / authorize / issue sb. a patent 授予某人一项专利
    • overturn / eliminate an entire class of patents 撤销一整类的专利
  • copyright 版权

    • copyright owner 版权所有人
  • ownership 所有制

    • ownership structure n. 所有制结构【政治】
  • strike n. 罢工;撞击

    • attend a strike 参加一场罢工
  • forbid = prohibit = ban v. 禁止;取缔

    • she is prohibited from entering the casino. 她被禁止进入那个赌场
  • allow = permit v. 允许,许可

    • she is allowed to enter the casino. 她被准许进入那个赌场
  • warrant n. 授权书,委任状,准许状,搜查令

    • the police issues a warrant to arrest sb. 警察批准了那个逮捕某人的授权书
  • licence n. 许可证

    • license n. / v. 许可证,证书;v. 允许,许可
      • driver’s license 驾驶证
      • medical license 执业医师许可证
  • illicit = illegal adj. 违法的

    • permit v. 准许,许可
    • allow v. 准许,许可
  • intrude v. 侵犯

    • intrude on green belt

    • intrusion n. 侵犯

  • tort n. 侵权(法)

    • the tort law
    • the tort system 侵权制度

Unit2 立法执法

  • law = bill = act = statute = rule = regulation n. 法律;法则;规律

    • the Charter = the Constitution 宪法

    • natural laws 自然规律

    • state laws 洲际法律

    • federal statue 联邦法规

    • The Human Rights Bill 人权法

    • The Tea Act 茶叶法案 使得美国独立成为一个国家并命名为USA

    • rule = regulation 学校规范,区域规范

  • comply with = abide by = follow = obey 遵守,按照

  • legislate v. 立法

    • legal adj. 法律的;合法的
      • legal learning 法律知识(07翻译)
      • legal practice 法律实践
    • legitimate adj. 合法的;合理的
      • legitimate concerns 合理的担忧
    • legitimacy n. 合法(性);合理(性)
    • legislation n. 立法
    • legislator n. 议员;人大代表
    • legislature n. 立法机关;议会
      • congress n. 国会(美)
      • parliament n. 议会(英)
      • the National People’s Congress (NPC)全国人民代表大会
    • legislative adj. 立法的
      • legislative body 立法机关;立法主体
  • charter n. 宪章

  • amend v. 修改

    • amend the Constitution 修改宪章

    • mend v. (针对实物的)修复

      • mend the broken bone 修复摔伤的骨头
    • the fourth Amendment 《第四修正案》

    • violate the fourth Amendment 违反《第四修正案》

    • the charter’s main tool 这个宪章(实施)的主要工具

  • regulate v. 规范

    • regulate our behavior 规范我们的行为
    • regulate our mood 掌控我们的情绪
    • regular adj. 规范的
      • irregular adj. 不规则的;不规范的
    • regulatory body 主管部门
  • punish = penalize = fine v. 惩罚

  • item n. 款 = provision n. 条 = clause n. 条款

    • The justices overturned three of four contested provisions. 大法官推翻了四条有争议的条款其中的三条。
    • the explainatory item 解释性的条款
      • explainatory adj. 解释性的
      • explain v. 解释
  • compact n. 共识

    • basic compact 基本共识
    • contract n. 合同
    • agreement n. 协议,共识
  • frame v. 制订(法律),总体设计…

    • frame a bill 制订一个法案
    • framer n. 总设计师,总策划
  • draft v. 起草 n. 草案 adj. 起草的

    • draft a bill/act/law
    • the first draft 初稿
    • the final draft 终稿
  • fashion / develop / set up conservation measures 制订环境保护的措施

  • implement = enforce v. 执行

    • enforce the law / bill / act / policy 执行政策
    • a well-enforced law 一部被很好执行的法案
    • implement the law flexibly 灵活执行法律
    • implementation = enforcement 执行
      • joint enforcement 共同执行
    • reinforce v. 加强
      • reinforce social solidarity
      • reinforce the effect

专业领域词汇

  • the American Bar Examination 美国司法考试

Unit3 行政:政府管理

节一

  • administration n. 管理;政府
    • the Trump Administration 特朗普政府
    • the administration = the government
      • governor n. 州长;省长
      • govern v. 管理
      • governance n. 管理
        • corporate governance 公司管理(07.S2.reading.04)
    • the authorities 当局,官方
      • authority n. 权利
      • authorize v. 授权
        • authorize HUAWEI a patent.
    • council n. 委员会
      • the state council 国务院;中国中央政府;联邦政府
      • the local council 地方议会,地方政府
  • democracy n. 民主(制)
    • democratic adj. 民主的
    • science n. 科学
    • pioneer n. 先行者
    • shopping becomes a public and democratic act. 购物成为了一种开放的人人可以参与的行为
    • democratic values 民主价值观
    • the Democratic (party) 民主党
      • democrat n. 民主党人
    • the Republican (party) 共和党
      • republican n. 共和党人
      • republic n. 共和国
        • the People’s Republic of China
  • monarchy n. 君主制
    • monarch n. 君主
      • king, queen
    • head of state 国家首脑,国家元首
    • president n. 总统;主席
      • preside over sth. 主持…
    • prime minister = premier n. 首相,总理
      • Japanese prime minister Abe
      • minister n. 部长,大臣
        • the minister of education
        • the minister of foreign affairs 外交部长
        • the minister of civil affairs 民政部长
          • civilian n. 平民
        • ministry n. 部
        • province n. 省
          • province governor 省长
        • state n. 州(美);国家(其它)
          • state governor 州长
    • the royal family n. 王室家庭
    • Royal Shakespear Company (RSC) 皇家莎士比亚公司

Unit3 行政:政治,官员,部门

节一

  • politics n. 政治学
    • political leaders 政治领导人
    • politician n. 政客 政治家
    • statesman n. 政治家
    • businessman n. 商人
    • economics n. 经济学
  • senator n. 参议员
    • The senate n. 参议院
    • senior n. 年长的人;大四学生;adj. 年长的;高级的
  • official n. 官员
    • government officials 政府官员
    • incompetent officials 没有能力的官员
    • office 办公室
    • civil servants 公仆
      • serve v. 服务
  • the Union 工会
    • the Unions in the public sector 公共部门
    • the Unions in the private sector 私有部门
    • the students’ Union 学生会
    • the postgraduates’ Association 研究生协会
      • association n. 协会
      • National Basketball Association (NBA)
      • Australian Medical Association
      • Chinese Medical Association 中国医学会
      • Chinese Football Association (CFA) 中国足协
  • chairman n. 主席;主持人
    • chair = preside v. 主持
  • federal government 联邦制政府
    • federal court 联邦法院
    • federal Bureau of Investigation 联邦调查局
      • bureau n. 局
      • bureaucrat n. 官员, 官僚
      • bureaucratic adj. 官僚主义的
      • bureaucracy n. 官僚主义
        • democracy n. 民主
        • democratic adj. 民主的
        • democrat n. 民主党人
  • commission = commitee = board n. 委员会 = 部
    • board n. 董事会
  • institution = agency n. 机构
    • research institution 研究机构
    • financial institution 金融机构
    • higher institution 高等教育机构,高校
    • a national agency 国家机构
    • Xinhua News Agency 新华社
    • Central Intelligence Agency (CIA)中央情报局
    • a traveling agency 旅游社
  • district n. 区(行政)
    • Haidian District of Beijing
    • special administrative district / region 特别行政区
  • region 地区(地理)
    • poor regions
    • regional cooperation 地区合作
    • national cooperation 全国性合作
    • international cooperation 国际合作
    • reign n. 统治
      • In 1912, Puyi ended his reign in embarrassment.
    • sovereign adj. 有主权的
    • sovereignty n. 主权
    • religion n. 宗教
    • regime n. 政体
    • regulate our behavior/mood

Unit3 行政:选举、发行、倡导

节一

  • issue = release v. 出台,发布
    • issue a policy
    • issue a preferential policy to lure talents. 出台优惠政策以吸引人才
      • prefer v. 偏爱
    • release new guidelines 发布新的指导意见
  • brief n. 简讯,简报; adj. 简短的
    • a brief introduction
    • abbreviate v. 缩写
    • abbreviation n. 缩写
  • elect v. 选举;选择
    • presidential election campaign 总统选举战役
      • campaign n. 战役;运动
    • elect sb. as monitor 选举某人做班长
    • elect / choose / select the rich as friends.
  • lobby = persuade v. 游说,说服
    • anti-smoking lobby 戒烟游说
    • persuade sb. into doing sth. 说服某人做某事
    • persuade the chinese into boycotting a kind of japanese product.
      • boycott v. 抵制
  • sponsor v. 发起;n. 赞助人
    • sponsor a project 发起一个计划
    • sponsor a initiative / advocate 发起一个倡议
      • advocate = preach v. 倡导;鼓吹 n. 倡导
        • advocate thrift 提倡节俭
        • They always advocate / preach the American values / democracy / system and attack the socialist values / democracy / system.
        • It irrigated chinese that some politicians are advocating Taiwan Independence.
        • the Christians always preach their religion.
    • sponsor a national English speech contest 发起了一个全国英语演讲比赛
  • responsible adj. 负责任的
    • Who sponsor should be responsible for the initiative. 发起人需要对倡议负责
  • poll n. 调查;民意投票
    • the Gallup poll 盖勒普调查
    • survey v. / n. 调查
      • a recent survey indicates that ….
    • census n. 人口普查
      • the 1990 census revealed that …
      • the 2020 census will indicate that …
      • reveal = indicate v. 表示,显示,展示
  • ballot n. 选票;匿名制选举
  • vote v. / n. 投票
    • vote for .. 投票支持
    • vote against … 投票反对…
    • vote for the bill / act / law / rule / statute 投票支持那项法案

uint3 行政:身份、迁徙、协调

节一

专业领域词汇

  • Master of Business Administration (MBA)工商管理硕士
  • Juris Master(JM)法硕

附加词汇

  • solar adj. 太阳的

    • solitude 独居 n.

    • solitary 孤独的 adj.

    • isolate 孤立 v.

    • isolated 孤独的 adj.

    • solar energy 太阳能 n.

  • adapt v. 适应

    • adaptation 适应 n.

    • adapt to the new environment 适应新的环境

  • eligible adj. 有资格的

    • be eligible for sth. 在某事上有资格
      • be eligible for benefits 有资格得到补助
  • binding adj. 有约束力的

    • a legally binding rule 一个具有法律约束力的规定
    • bind v. 捆绑
    • bound adj. 被俘的
  • follow = obey = abide by = comply with v. 遵守

考研政治

考研政治

马原 (24分)

总括考试要点:

  • 八章,二十三节,一百六十五个考点

  • 二、三、五章总共不小于20分

  • 四、六章低于3-4分

  • 一、七、八章小于1-2分

考点:

  • 哲学四大领域:唯物论(辩证唯物论->强调运动的物质),辩证法(唯物辩证法->强调物质的运动),认识论,唯物史观
  • 世界是物质的,物质是运动的,运动是物质的运动,物质是运动的物质

导论(和科学社会主义一起考总共1-2分)(4 / 21)

第一章 马克思主义是关于无产阶级和人类解放的科学(非重点)

哲学(16-18分)(2单选<1分>[1,2], 2多选<2分>[17,18], 1分析<10分>[34])

第二章 世界的物质性及发展规律
第一节 世界多样性与物质统一性:唯物论
第二节 事物的练习与发展:辩证法
第三节 唯物辩证法是认识世界和改造世界的根本方法(出单选)
第三章 实践与认识及其发展规律:认识论(2021年34题可能考)
第一节
第四章 人类社会及其发展规律:唯物史观
第一节

政治经济学(5-7分)(2单选<1分>[3,4], 2多选<2分>[19,20])

第五章
第六章

科学社会主义(和导论一起考总共1-2分)(4 / 21)

第七章
第八章

存在主义

As a Existentialist

​ Existentialist,存在主义。今天突然为此着迷了,坚信自己应该成为这样一个贯彻存在主义的人。

曾经的虚无主义者

​ 以往的我,从来都是一个走过一段算一段的人,没有什么或伟大或细致入微的目标,没有什么细致详实的计划,没有一生一定要做到的事,没有非它不可的决心。

​ 我那时时常会想,既然生不带来,死不带去,为什么要这么拼命呢?若是将自己一生都奉献在苦痛之中了,却没能得到什么回报,那我这一生又有什么意义呢?既然生命毫无意义,无论我做什么,我都将最终陷入深深的土地之下,或成空气中的微粒,或成宇宙中飘荡的不可见光,那我为什么要活着呢?

​ 甚至产生了各种抛弃生命必经之路的想法:要交朋友?很麻烦啊,要是说错什么了而失去了这个花费那么多精力的朋友,更麻烦啊;要学游泳?很麻烦啊,我怕水,这辈子也不会误入水中的啦,要是有女朋友一定也是选不喜欢游泳的吧;要考大学?简直麻烦过了头啊,每天5点起11点睡,比当今996还要消耗生命啊,凭什么不花多点时间在能让自己身心愉快的事情上呢?啊算了,还是就要心情愉快吧,身体这种东西,反正生命没有意义,活多久也是看天,那只要今天心情开心了,无论如何也足够了吧。

​ 何其消极的想法带来的不只是生活上的不积极主动作为,生命中的不积极追求,生理上的怠惰退步,更加让我在内心中植下了一个心锚,及时行乐,逃避困难,要是被迫站在了困苦的面前,不如就直接从天台上直奔地狱去吧。

​ 作为一个积极寻死的人,能活到今天,实在是因为怕疼吧。

死亡这一尊神

​ 我不信教,但也因为曾经消极的想法而突然理解了宗教对教徒来说的意义。宗教赋予了死亡一个新意义:死亡不是终点,而是中转站。

​ 死亡对他们来说并不可怕,死亡列车最终行驶的方向才是可怕的。

一念天堂,一念地狱,无论宗教的创立者有怎样的目的,宗教是心灵的归宿这一点是不能否认的。宗教给予了信徒们前进的意义,生命的意义。他们将从信仰宗教开始,便能彻底剥离虚无主义对他们的消极影响,他们将信奉神,为了死亡之后能走向更加美好的‘天堂’之所,他们能够行善戒恶,又或者至少保持绝对的中立。这对个人,可以说是极好的。

​ 那么若是我们不信教呢?我们也能有一柄利刃去斩下那个消极的自己的头颅,做回一个积极向上的人吗?

​ 当然,那就是存在主义。

无神论者之死

我们每个人都要用尽一生,为自己的生命赋予意义,唯一决定我们是谁的,只有我们自己!

picTest

上传图片进行图片加载测试

picture

Win10 + AppServ + 另外自行安装的Mysql8.0遇到的问题

Win10 + AppServ 2.6.0 + 另外自行安装的Mysql8.0遇到的问题

  1. 配置PHPMyAdmin
    • 需要配置的内容有:连接路径,连接的Mysql服务及账户密码
    • phpMyAdmin配置文件路径:./config.inc.php (phpMyAdmin根目录下)
1
2
3
4
5
6
7
8
9
10
// config.inc.php
// 1. 配置php网站域名
$cfg['PmaAbsoluteUri'] = 'http://127.0.0.1/phpmyadmin';
// 2. 配置Mysql
$cfg['Servers'][$i]['host'] = 'localhost'; // MySQL的连接IP, 若需要远程连接即可配置此处
$cfg['Servers'][$i]['port'] = ''; // 端口号, 默认空白即为3306
// 3. 配置Mysql账号密码
$cfg['Servers'][$i]['auth_type'] = 'http';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '123456'; // 此处使用的是基于mysql_native_password加密规则的账号密码
  • 注意事项
    • ./config.sample.inc.php 不需要进行另外的配置
  1. Mysql #1251- Client does not support authentication protocol, consider upgrade mysql.
    • 问题原因:Mysql 8.0 以上后使用了新的加密规则——chaching_sha2_password. 而 AppServ 2.6.0 中自带的PHP版本为PHP6,因此PHPMyAdmin在登陆Mysql时,无论Mysql账户密码有无设置正确,PHPMyAdmin都无法登陆。
    • 延伸:此处是Mysql报错,因此若是其他程序登陆Mysql时遇到此问题,也可以用同样的方法。
    • 解决方法:
      1. 升级PHP到7.0以上的版本即可使PHP支持新的加密规则(由于本人才疏学浅,担心AppServ统一安装的PHP6若是更换版本会不会导致整个AppServ崩溃,于是选用了另一个方法)
      2. 由于MySql 8.0以后只是默认使用了新的加密规则,并没有直接不支持旧规则——mysql_native_password,因此我们在Mysql进程中进行设置mysql_native_password规则的密码,使之能兼容两个加密规则的登陆请求。下面是解决方案
1
2
3
4
5
6
7
8
9
# 运行环境为win10 1908
# 1. 在终端中登陆mysql
mysql -u username -p123456 # -u后面可以不加空格, -p后面必须不加空格(除非密码里含有一个空格)
# 2. 进入系统数据库
use mysql;
# 3. 添加加密规则 设置在mysql_native_password加密规则下的密码
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
# 4. 刷新权限
FLUSH PRIVIEGES;
  1. 新版Edge貌似仍然有BUG,无法通过AppServ进入phpMyAdmin,神秘
    • 解决办法:Chrome可以正常打开