forked from CambridgeEngineering/PartIA-Computing-Michaelmas
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathxue.cn.json
277 lines (277 loc) · 6.56 KB
/
xue.cn.json
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
{
"chapters": [
{
"is_free": true,
"path": "zh-CN/00_Part_IA_Michaelmas_Term_computing.ipynb",
"tags": [
"Jupyter"
],
"title": "0 前言"
},
{
"is_free": true,
"path": "zh-CN/01_Variables,_assignment_and_operator_precedence.ipynb",
"chapter_name": "正文",
"tags": [
"变量",
"数学运算",
"运算符",
"变量命名",
"变量赋值"
],
"title": "1.1 1 变量,赋值和运算符优先级",
"display": "1 变量,赋值和运算符优先级"
},
{
"is_free": true,
"path": "zh-CN/02_Control_statements.ipynb",
"tags": [
"布尔运算",
"比较运算符",
"if语句",
"for循环",
"while循环",
"无限循环"
],
"title": "1.2 2 条件控制",
"display": "2 条件控制"
},
{
"is_free": true,
"path": "zh-CN/03_Types,_type_conversions_and_floating_point_arithmetic.ipynb",
"tags": [
"内置函数type()",
"布尔运算",
"字符串",
"整数",
"浮点数",
"复数",
"数据类型转换",
"二进制",
"字节"
],
"title": "1.3 3 数据类型,类型转换和浮点运算",
"display": "3 数据类型,类型转换和浮点运算"
},
{
"is_free": true,
"path": "zh-CN/04_Functions.ipynb",
"tags": [
"函数",
"递归函数",
"函数参数",
"斐波纳契数列"
],
"title": "1.4 4 函数",
"display": "4 函数"
},
{
"is_free": true,
"path": "zh-CN/05_Library_functions.ipynb",
"tags": [
"import",
"pip",
"安装库",
"numpy库,Jupyter",
"math库",
"字符串",
"random库",
"内置函数sorted()",
"并行处理"
],
"title": "1.5 5 库函数",
"display": "5 库函数"
},
{
"is_free": true,
"path": "zh-CN/06_Data_structures.ipynb",
"tags": [
"数据结构",
"列表",
"元组",
"字典",
"数据容器的迭代"
],
"title": "1.6 6 数据结构",
"display": "6 数据结构"
},
{
"is_free": true,
"path": "zh-CN/07_Numerical_computation.ipynb",
"tags": [
"numpy库"
],
"title": "1.7 7 数值运算",
"display": "7 数值运算"
},
{
"is_free": true,
"path": "zh-CN/08_Plotting.ipynb",
"tags": [
"matplotlib库"
],
"title": "1.8 8 绘图",
"display": "8 绘图"
},
{
"is_free": true,
"path": "zh-CN/09_Error_handling_and_testing.ipynb",
"tags": [
"语法错误",
"异常",
"异常处理",
"捕获异常",
"测试",
"参数有效性检查",
"断言",
"pytest库"
],
"title": "1.9 9 错误处理和测试",
"display": "9 错误处理和测试"
},
{
"is_free": true,
"path": "zh-CN/10_Algorithms.ipynb",
"tags": [
"算法",
"numpy库",
"伪代码",
"线性搜索算法",
"搜索算法",
"二分搜索算法",
"冒泡排序算法",
"快速排序算法"
],
"title": "1.10 10 算法",
"display": "10 算法"
},
{
"is_free": true,
"path": "zh-CN/11_Complexity.ipynb",
"tags": [
"算法",
"算法复杂度",
"算法性能",
"排序算法",
"快速排序算法",
"matplotlib库"
],
"title": "1.11 11 复杂度",
"display": "11 复杂度"
},
{
"is_free": true,
"path": "zh-CN/12_Object-oriented_design.ipynb",
"tags": [],
"title": "1.12 12 面向对象",
"display": "12 面向对象"
},
{
"is_free": true,
"path": "zh-CN/Exercises/01_Exercises.ipynb",
"tags": [],
"chapter_name": "练习题",
"title": "2.1 Exercises 01",
"display": "Exercises 01"
},
{
"is_free": true,
"path": "zh-CN/Exercises/02_Exercises.ipynb",
"tags": [],
"title": "2.2 Exercises 02",
"display": "Exercises 02"
},
{
"is_free": true,
"path": "zh-CN/Exercises/03_Exercises.ipynb",
"tags": [],
"title": "2.3 Exercises 03",
"display": "Exercises 03"
},
{
"is_free": true,
"path": "zh-CN/Exercises/04_Exercises.ipynb",
"tags": [],
"title": "2.4 Exercises 04",
"display": "Exercises 04"
},
{
"is_free": true,
"path": "zh-CN/Exercises/05_Exercises.ipynb",
"tags": [],
"title": "2.5 Exercises 05",
"display": "Exercises 05"
},
{
"is_free": true,
"path": "zh-CN/Exercises/06_Exercises.ipynb",
"tags": [],
"title": "2.6 Exercises 06",
"display": "Exercises 06"
},
{
"is_free": true,
"path": "zh-CN/Exercises/07_Exercises.ipynb",
"tags": [],
"title": "2.7 Exercises 07",
"display": "Exercises 07"
},
{
"is_free": true,
"path": "zh-CN/Exercises/08_Exercises.ipynb",
"tags": [],
"title": "2.8 Exercises 08",
"display": "Exercises 08"
},
{
"is_free": true,
"path": "zh-CN/Exercises/09_Exercises.ipynb",
"tags": [],
"title": "2.9 Exercises 09",
"display": "Exercises 09"
},
{
"is_free": true,
"path": "zh-CN/Exercises/10_Exercises.ipynb",
"tags": [],
"title": "2.10 Exercises 10",
"display": "Exercises 10"
},
{
"is_free": true,
"path": "zh-CN/Exercises/11_Exercises.ipynb",
"tags": [],
"title": "2.11 Exercises 11",
"display": "Exercises 11"
},
{
"is_free": true,
"path": "zh-CN/Exercises/12_Exercises.ipynb",
"tags": [],
"title": "2.12 Exercises 12",
"display": "Exercises 12"
},
{
"is_free": true,
"path": "zh-CN/xuecn_license.ipynb",
"title": "Z 版权声明"
}
],
"cover": "https://img-cdn.xue.cn/cover_computing.png",
"description": "这是剑桥大学工程系计算科学的入门课程,世界名校帮你学会工作中绝对可以用上的 Python 技能。学习该课程并不需要任何编程经验。但它确实需要具有一定的数学知识。共包含 12 个适合自学的章节,每个章节配备练习题。\n翻译:金葡萄。\nAll material is copyright of Garth N. Wells (gnw20@cam.ac.uk).\nAll text is made available under the CC 4.0.\nAll computer code is released under the MIT license.",
"license": "本书中文版由译者 Goldengrape 授权。\n原文作者: Garth N. Wells (gnw20@cam.ac.uk). https://notebooks.azure.com/garth-wells/projects/CUED-IA-Computing-Michaelmas\n本书ipynb文件及原内容的授权:CC 4.0 知识共享 署名-相同方式共享. https://creativecommons.org/licenses/by-sa/3.0/deed.zh\n书中所有代码的授权为 MIT license",
"name": "了解计算-Python 零基础",
"programming_language": "Python",
"category": "数据分析,Python,数据科学",
"authors": [
{
"avatar": "https://static.press.one/baseone/book/computing_avatar.png",
"bio": "暂无",
"name": "goldengrape",
"role": "translate"
}
],
"publish_at": "2019-08-27T00:00:02",
"toc_level": 2,
"version": "0.5"
}