摘要:
### 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 将散列包含行的内容转化为其他内容 阅读全文