08 2021 档案
摘要:6.828 两个神级教学项目: nand2tetris 与 MIT6.828 class : MIT 6.828 refers: inline assembly | I/O Ports | 8086寄存器略解 | x86-64架构寄存器详解 notes: [MIT] 6.828 操作系统工程导读 |
阅读全文
摘要:数据结构目录 principles: 区间:Left inclusive interval 效率:边界判断,branch prediction 效率:+= vs. =+ 10^9+7: why, how: 1e9+7 knowledges: Complexity: Ο, Θ, Ω reference
阅读全文
摘要:3. Dynamic Programming links dp 分类: LIS | LCS 区间dp( OI 区间dp | dp区间入门) segment tree Sum: k n 问题 int waysOfSumGreater(int n,int k){ int dp[n+2][n+2]; me
阅读全文
摘要:Vim vim自带参考:vimtutor | :help vim参考文档:github/star list: vim learning/repository | zhihu/专栏 vim相关设置:vimrc最小通用设置 tag 跳至tag:ctrl+] 返回tag:ctrl+T registers
阅读全文
摘要:Win 连接 Linux win-cmd-ssh-scp ssh免密码登陆 Win 远程连接 Sakura内网穿透实现远程桌面
阅读全文
摘要:Linux C yum install gcc-c++ g++ -o main -O0 main.c -g intrusive way: #define Debug 1 #if Debug printf(); fflush(); #endif gdb way: tell compiler to re
阅读全文
摘要:VNC CentOS版本 [root@Python ~]# cat /etc/redhat-release CentOS Linux release 7.6.1810 (Core) 环境 [root@Python ~]# yum upgrade [root@Python ~]# yum -y gro
阅读全文
摘要:cppreference Container Built-in Types Abstract Data Types defined directly by C++ language defined by standard libraty repersents computer hardware fa
阅读全文
摘要:C++中的值类别 | stackoverflow | OI-Wiki | cpprefer int foo(int &x){ foo(++x); foo(x++); }
阅读全文
摘要:https://tlanyan.pp.ua/cpp-function-modifier-summary/ #include <bits/stdc++.h> using namespace std; #define PI 3.14 typedef int myint int main(){ const
阅读全文
摘要:references C++语言文档MS Unresolved questions Do main with parameter:char *argc, char *argv Undefined-behavior Statically-typed language 强类型、弱类型、静态类型、动态类型
阅读全文
摘要:平均时间复杂度 最好情况 最坏情况 空间复杂度 排序方式 稳定性 选择排序 O(n^2) O(n^2) O(n^2) O(1) in-place 不稳定 冒泡排序 O(n^2) O(n) O(n^2) O(1) in-place 稳定 插入排序 O(n^2) O(n) O(n^2) O(1) in-
阅读全文
摘要:Polish Calculator Infix->Postfix Rules: number → postfix stack ( → opera stack ) → pop opera stack until ( +-*/ → pop greater or equal priority operat
阅读全文

浙公网安备 33010602011771号