摘要:
* [Welcome!](#welcome) * [Static to Dynamic](#static-to-dynamic) * [Flask](#flask) * [Layout](#layout) * [POST](#post) * [Frosh IMs](#frosh-ims) * [Fl 阅读全文
摘要:
### Lecture8 HTML, CSS, JavaScript #### Routers 为了将数据从一个地方转到另一个地方,我们需要做转发决定,也就是说需要某人来决定将数据转发到哪里。这个人就是路由器。 TCP/IP 是两个协议,允许计算机间数据在网上传输。 IP 是 Internet Pr 阅读全文
摘要:
### lecture7 SQL #### Flat-File Database - 数据常常可以视作表格,每一行是一个记录,每一列是一个属性 - 电子表格例如Excel,Google Spreadsheet可以导出为csv格式文件。csv文件是纯文本文件,每一行是一个记录,每一列用逗号分隔,可以看 阅读全文
摘要:
* [Welcome!](#welcome) * [Python](#python) * [Hello](#hello) * [Types](#types) * [Speller](#speller) * [Image Recognition](#image-recognition) * [CS50 阅读全文
摘要:
* _Queues_ are one form of abstract data structure. * Queues have specific properties. Namely, they are _FIFO_ or “first in first out.” You can imagin 阅读全文
摘要:
### Lecture4 Memory #### Addressres C语言提供了了两种关于内存的强大操作 ```C & // 提供在内存中所存事物的地址 * // 指示编译器去往内存中某个位置 ``` example: ```C #include int main(void) { int n = 阅读全文
摘要:
### Leture3 algorithms #### Running time 符号: - O:大O符号,表示上限 - $\Omega$:大Omega符号,表示下限 - $\Theta$:大Theta符号,表示上下限 #### seach.c ``` #include #include int m 阅读全文
摘要:
### Lecture2 - Arrays #### Compiling 1. 为什么在云端上有cs50这个头文件,在本机上没有? 在机器的某处存在~/usr/include/cs50.h,但是在本机上没有 2. 代码编译四步骤 ``` preprocessing 将散列包含行的内容转化为其他内容 阅读全文