├── .gitignore ├── LICENSE ├── Others └── Blog │ ├── Hugo │ ├── Hugo-Quick-Start.md │ ├── Hugo-auto-deployment-by-Github-Actions.md │ └── Hugo-theme-Minus.md │ └── WordPress │ └── create-a-wordpress-blog.md ├── Programming Languages ├── C & C++ │ ├── Algorithm Programming Skills │ │ ├── C++ Common Apis │ │ │ ├── 0_ACM_mode.md │ │ │ ├── 10_算法常用 API.md │ │ │ ├── 1_基本数据类型.md │ │ │ ├── 2_数组.md │ │ │ ├── 3_列表.md │ │ │ ├── 4_字符串.md │ │ │ ├── 5_队列.md │ │ │ ├── 6_堆栈.md │ │ │ ├── 7_集合.md │ │ │ ├── 8_映射.md │ │ │ └── 9_pair.md │ │ └── error-prone-details.md │ ├── C Basics │ │ ├── C-notes.md │ │ └── C-pointer.md │ ├── C++ Basics │ │ └── 0_编译 │ │ │ └── C++ 编译过程.md │ ├── C++ Build Tools │ │ ├── CMake-related.md │ │ └── CMake │ │ │ └── CMake-learning.md │ ├── C++ Debugging │ │ └── C++ gdb todo.md │ ├── C++ Source Code │ │ └── std_move_forward_sources.md │ ├── C++ multithread programming │ │ └── C++ multithread programming.md │ ├── C++ 引用&.md │ ├── Effective C++ │ │ ├── E1. 让自己习惯 C++(1-4).md │ │ ├── E2. 构造_析构_赋值运算(5-12).md │ │ ├── E3. 资源管理(13-17).md │ │ ├── E4. 设计与声明(18-25).md │ │ ├── E5. 实现(26-31).md │ │ ├── E6. 继承与面向对象设计(32-40).md │ │ ├── E7. 模板与泛型编程(41-48).md │ │ ├── E8. 定制 new 和 delete(49-52).md │ │ └── E9. 杂项讨论(53-55).md │ └── More Effective C++ │ │ ├── ME1. 基础议题(1-4).md │ │ ├── ME2. 操作符(5-8).md │ │ ├── ME3. 异常(9-15).md │ │ ├── ME4. 效率(16-24).md │ │ ├── ME5. 技术(25-31).md │ │ └── ME6. 杂项讨论(32-35).md ├── Go │ ├── Go Package & Tool │ │ ├── Go-package.md │ │ └── Go-tool.md │ └── Go Syntax │ │ ├── Go Basic Syntax │ │ ├── 1_基本数据类型.md │ │ ├── 2_数组.md │ │ ├── 3_切片.md │ │ ├── 4_字符串.md │ │ ├── 5_映射.md │ │ └── Go-basic-syntax.md │ │ ├── Go Concurrency │ │ └── Go-concurrency.md │ │ └── Go Type System │ │ └── Go-type-system.md ├── JSON │ └── json-learning.md └── Java │ ├── Algorithm Programming Skills │ └── Java-common-apis-summary.md │ └── Frameworks │ └── Spring │ └── Spring Boot │ └── spring-boot-learning.md ├── README.md ├── Skills ├── AutoHotkey │ └── AutoHotkey-quick-start.md ├── Compression Algorithm │ └── zstd │ │ └── zstd.md ├── Docker │ └── docker-basis.md ├── Git │ ├── git-advanced.md │ ├── git-bash-beautification.md │ ├── git-learning.md │ ├── git-quick-start.md │ ├── git-usage-specification.md │ └── github-tutorial.md ├── Linux │ ├── CentOS │ │ ├── CentOS-beginning │ │ │ ├── Nginx-Installation-and-Configuration.md │ │ │ ├── centos-beginning-basis.md │ │ │ ├── centos-beginning-common-tool.md │ │ │ ├── centos-beginning-database.md │ │ │ └── centos-beginning-programming.md │ │ └── CentOS-configuration │ │ │ ├── centos-firewall-port-management.md │ │ │ └── centos-ip-config.md │ ├── Common │ │ ├── bash │ │ │ └── bash-process-related.md │ │ └── memory │ │ │ └── swap-related.md │ ├── Linux-de&compression-commands.md │ ├── Linux-inode.md │ ├── Linux-link.md │ ├── Linux-notes.md │ ├── Linux-res-monitoring.md │ └── Linux-sys-info.md ├── Markdown │ ├── markdown-learning.md │ └── markdown-style-guide.md ├── Maven │ ├── maven-learning.md │ └── pom-label-details.md ├── Percona XtraBackup │ ├── Percona XtraBackup Basis │ │ ├── xtrabackup-backup-principle.md │ │ ├── xtrabackup-installation-and-usage.md │ │ └── xtrabackup-优化版部署.md │ └── Percona XtraBackup Source Code Analysis │ │ ├── xtrabackup-full-backup-SC-analysis.md │ │ └── xtrabackup-restore-backup-SC-analysis.md ├── PowerShell │ └── powershell-beautification.md ├── Sysbench │ └── sysbench-basis.md └── Thrift │ └── thrift-basis.md ├── Subjects ├── Data Structure & Algorithm │ ├── Algorithm │ │ ├── 分治算法 │ │ │ └── 分治算法.md │ │ ├── 动态规划 │ │ │ └── 动态规划.md │ │ ├── 区间求和 │ │ │ ├── 前缀和.md │ │ │ └── 差分.md │ │ ├── 双指针 │ │ │ ├── 左右指针 │ │ │ │ ├── 二分查找.md │ │ │ │ └── 滑动窗口.md │ │ │ └── 快慢指针 │ │ │ │ └── 快慢指针.md │ │ ├── 图算法 │ │ │ ├── 二分图 │ │ │ │ └── 匈牙利算法.md │ │ │ ├── 单源最短路径 │ │ │ │ ├── Bellman-Ford.md │ │ │ │ ├── Dijkstra.md │ │ │ │ └── SPFA.md │ │ │ ├── 启发式搜索.md │ │ │ ├── 基本图算法 │ │ │ │ ├── BFS.md │ │ │ │ ├── DFS.md │ │ │ │ ├── 回溯算法.md │ │ │ │ ├── 强连通分量.md │ │ │ │ └── 拓扑排序.md │ │ │ ├── 多源最短路径 │ │ │ │ └── Floyd-Warshall.md │ │ │ ├── 最小生成树 │ │ │ │ ├── Kruskal.md │ │ │ │ └── Prim.md │ │ │ ├── 树的遍历 │ │ │ │ └── 树的遍历.md │ │ │ └── 网络流 │ │ │ │ └── 最大流.md │ │ ├── 排序算法 │ │ │ ├── 归并排序.md │ │ │ └── 快速排序.md │ │ ├── 数学 │ │ │ ├── 信息熵&进制转化.md │ │ │ ├── 拒绝采样.md │ │ │ ├── 摩尔投票.md │ │ │ └── 洗牌算法.md │ │ ├── 算法分析 │ │ │ └── 复杂度分析.md │ │ └── 通用技巧 │ │ │ └── 通用技巧.md │ └── Data Structure │ │ ├── 栈 │ │ └── 单调栈.md │ │ └── 树 │ │ ├── 字典树.md │ │ └── 并查集.md └── Distributed Systems │ ├── 2 共识算法 │ └── ParallelRaft │ │ └── ParallelRaft-basis.md │ └── 分布式文件系统 │ └── PolarFS │ └── PolarFS-basis.md └── Tools ├── IDEA └── idea-learning.md ├── VS Code ├── vs-code-learning.md └── vs-code-remote-development.md └── Xshell ├── xshell-learning.md └── xshell-ssh-password-free-login.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/LICENSE -------------------------------------------------------------------------------- /Others/Blog/Hugo/Hugo-Quick-Start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Others/Blog/Hugo/Hugo-Quick-Start.md -------------------------------------------------------------------------------- /Others/Blog/Hugo/Hugo-auto-deployment-by-Github-Actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Others/Blog/Hugo/Hugo-auto-deployment-by-Github-Actions.md -------------------------------------------------------------------------------- /Others/Blog/Hugo/Hugo-theme-Minus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Others/Blog/Hugo/Hugo-theme-Minus.md -------------------------------------------------------------------------------- /Others/Blog/WordPress/create-a-wordpress-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Others/Blog/WordPress/create-a-wordpress-blog.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/0_ACM_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/0_ACM_mode.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/10_算法常用 API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/10_算法常用 API.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/1_基本数据类型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/1_基本数据类型.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/2_数组.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/2_数组.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/3_列表.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/3_列表.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/4_字符串.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/4_字符串.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/5_队列.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/5_队列.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/6_堆栈.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/6_堆栈.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/7_集合.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/7_集合.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/8_映射.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/8_映射.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/9_pair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Algorithm Programming Skills/C++ Common Apis/9_pair.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Algorithm Programming Skills/error-prone-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Algorithm Programming Skills/error-prone-details.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/C Basics/C-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/C Basics/C-notes.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/C Basics/C-pointer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/C Basics/C-pointer.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/C++ Basics/0_编译/C++ 编译过程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/C++ Basics/0_编译/C++ 编译过程.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/C++ Build Tools/CMake-related.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/C++ Build Tools/CMake-related.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/C++ Build Tools/CMake/CMake-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/C++ Build Tools/CMake/CMake-learning.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/C++ Debugging/C++ gdb todo.md: -------------------------------------------------------------------------------- 1 | # Linux 环境下 GDB 调试学习 TODO 2 | -------------------------------------------------------------------------------- /Programming Languages/C & C++/C++ Source Code/std_move_forward_sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/C++ Source Code/std_move_forward_sources.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/C++ multithread programming/C++ multithread programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/C++ multithread programming/C++ multithread programming.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/C++ 引用&.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/C++ 引用&.md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Effective C++/E1. 让自己习惯 C++(1-4).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Effective C++/E1. 让自己习惯 C++(1-4).md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Effective C++/E2. 构造_析构_赋值运算(5-12).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Effective C++/E2. 构造_析构_赋值运算(5-12).md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Effective C++/E3. 资源管理(13-17).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Effective C++/E3. 资源管理(13-17).md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Effective C++/E4. 设计与声明(18-25).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Effective C++/E4. 设计与声明(18-25).md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Effective C++/E5. 实现(26-31).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Effective C++/E5. 实现(26-31).md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Effective C++/E6. 继承与面向对象设计(32-40).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Effective C++/E6. 继承与面向对象设计(32-40).md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Effective C++/E7. 模板与泛型编程(41-48).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Effective C++/E7. 模板与泛型编程(41-48).md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Effective C++/E8. 定制 new 和 delete(49-52).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Effective C++/E8. 定制 new 和 delete(49-52).md -------------------------------------------------------------------------------- /Programming Languages/C & C++/Effective C++/E9. 杂项讨论(53-55).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/Effective C++/E9. 杂项讨论(53-55).md -------------------------------------------------------------------------------- /Programming Languages/C & C++/More Effective C++/ME1. 基础议题(1-4).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/More Effective C++/ME1. 基础议题(1-4).md -------------------------------------------------------------------------------- /Programming Languages/C & C++/More Effective C++/ME2. 操作符(5-8).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/More Effective C++/ME2. 操作符(5-8).md -------------------------------------------------------------------------------- /Programming Languages/C & C++/More Effective C++/ME3. 异常(9-15).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/More Effective C++/ME3. 异常(9-15).md -------------------------------------------------------------------------------- /Programming Languages/C & C++/More Effective C++/ME4. 效率(16-24).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/More Effective C++/ME4. 效率(16-24).md -------------------------------------------------------------------------------- /Programming Languages/C & C++/More Effective C++/ME5. 技术(25-31).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/More Effective C++/ME5. 技术(25-31).md -------------------------------------------------------------------------------- /Programming Languages/C & C++/More Effective C++/ME6. 杂项讨论(32-35).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/C & C++/More Effective C++/ME6. 杂项讨论(32-35).md -------------------------------------------------------------------------------- /Programming Languages/Go/Go Package & Tool/Go-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/Go/Go Package & Tool/Go-package.md -------------------------------------------------------------------------------- /Programming Languages/Go/Go Package & Tool/Go-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/Go/Go Package & Tool/Go-tool.md -------------------------------------------------------------------------------- /Programming Languages/Go/Go Syntax/Go Basic Syntax/1_基本数据类型.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Programming Languages/Go/Go Syntax/Go Basic Syntax/2_数组.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/Go/Go Syntax/Go Basic Syntax/2_数组.md -------------------------------------------------------------------------------- /Programming Languages/Go/Go Syntax/Go Basic Syntax/3_切片.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/Go/Go Syntax/Go Basic Syntax/3_切片.md -------------------------------------------------------------------------------- /Programming Languages/Go/Go Syntax/Go Basic Syntax/4_字符串.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/Go/Go Syntax/Go Basic Syntax/4_字符串.md -------------------------------------------------------------------------------- /Programming Languages/Go/Go Syntax/Go Basic Syntax/5_映射.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/Go/Go Syntax/Go Basic Syntax/5_映射.md -------------------------------------------------------------------------------- /Programming Languages/Go/Go Syntax/Go Basic Syntax/Go-basic-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/Go/Go Syntax/Go Basic Syntax/Go-basic-syntax.md -------------------------------------------------------------------------------- /Programming Languages/Go/Go Syntax/Go Concurrency/Go-concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/Go/Go Syntax/Go Concurrency/Go-concurrency.md -------------------------------------------------------------------------------- /Programming Languages/Go/Go Syntax/Go Type System/Go-type-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/Go/Go Syntax/Go Type System/Go-type-system.md -------------------------------------------------------------------------------- /Programming Languages/JSON/json-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/JSON/json-learning.md -------------------------------------------------------------------------------- /Programming Languages/Java/Algorithm Programming Skills/Java-common-apis-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/Java/Algorithm Programming Skills/Java-common-apis-summary.md -------------------------------------------------------------------------------- /Programming Languages/Java/Frameworks/Spring/Spring Boot/spring-boot-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Programming Languages/Java/Frameworks/Spring/Spring Boot/spring-boot-learning.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/README.md -------------------------------------------------------------------------------- /Skills/AutoHotkey/AutoHotkey-quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/AutoHotkey/AutoHotkey-quick-start.md -------------------------------------------------------------------------------- /Skills/Compression Algorithm/zstd/zstd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Compression Algorithm/zstd/zstd.md -------------------------------------------------------------------------------- /Skills/Docker/docker-basis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Docker/docker-basis.md -------------------------------------------------------------------------------- /Skills/Git/git-advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Git/git-advanced.md -------------------------------------------------------------------------------- /Skills/Git/git-bash-beautification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Git/git-bash-beautification.md -------------------------------------------------------------------------------- /Skills/Git/git-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Git/git-learning.md -------------------------------------------------------------------------------- /Skills/Git/git-quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Git/git-quick-start.md -------------------------------------------------------------------------------- /Skills/Git/git-usage-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Git/git-usage-specification.md -------------------------------------------------------------------------------- /Skills/Git/github-tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Git/github-tutorial.md -------------------------------------------------------------------------------- /Skills/Linux/CentOS/CentOS-beginning/Nginx-Installation-and-Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Linux/CentOS/CentOS-beginning/Nginx-Installation-and-Configuration.md -------------------------------------------------------------------------------- /Skills/Linux/CentOS/CentOS-beginning/centos-beginning-basis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Linux/CentOS/CentOS-beginning/centos-beginning-basis.md -------------------------------------------------------------------------------- /Skills/Linux/CentOS/CentOS-beginning/centos-beginning-common-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Linux/CentOS/CentOS-beginning/centos-beginning-common-tool.md -------------------------------------------------------------------------------- /Skills/Linux/CentOS/CentOS-beginning/centos-beginning-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Linux/CentOS/CentOS-beginning/centos-beginning-database.md -------------------------------------------------------------------------------- /Skills/Linux/CentOS/CentOS-beginning/centos-beginning-programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Linux/CentOS/CentOS-beginning/centos-beginning-programming.md -------------------------------------------------------------------------------- /Skills/Linux/CentOS/CentOS-configuration/centos-firewall-port-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Linux/CentOS/CentOS-configuration/centos-firewall-port-management.md -------------------------------------------------------------------------------- /Skills/Linux/CentOS/CentOS-configuration/centos-ip-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Linux/CentOS/CentOS-configuration/centos-ip-config.md -------------------------------------------------------------------------------- /Skills/Linux/Common/bash/bash-process-related.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Linux/Common/bash/bash-process-related.md -------------------------------------------------------------------------------- /Skills/Linux/Common/memory/swap-related.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Linux/Common/memory/swap-related.md -------------------------------------------------------------------------------- /Skills/Linux/Linux-de&compression-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Linux/Linux-de&compression-commands.md -------------------------------------------------------------------------------- /Skills/Linux/Linux-inode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Linux/Linux-inode.md -------------------------------------------------------------------------------- /Skills/Linux/Linux-link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Linux/Linux-link.md -------------------------------------------------------------------------------- /Skills/Linux/Linux-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Linux/Linux-notes.md -------------------------------------------------------------------------------- /Skills/Linux/Linux-res-monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Linux/Linux-res-monitoring.md -------------------------------------------------------------------------------- /Skills/Linux/Linux-sys-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Linux/Linux-sys-info.md -------------------------------------------------------------------------------- /Skills/Markdown/markdown-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Markdown/markdown-learning.md -------------------------------------------------------------------------------- /Skills/Markdown/markdown-style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Markdown/markdown-style-guide.md -------------------------------------------------------------------------------- /Skills/Maven/maven-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Maven/maven-learning.md -------------------------------------------------------------------------------- /Skills/Maven/pom-label-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Maven/pom-label-details.md -------------------------------------------------------------------------------- /Skills/Percona XtraBackup/Percona XtraBackup Basis/xtrabackup-backup-principle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Percona XtraBackup/Percona XtraBackup Basis/xtrabackup-backup-principle.md -------------------------------------------------------------------------------- /Skills/Percona XtraBackup/Percona XtraBackup Basis/xtrabackup-installation-and-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Percona XtraBackup/Percona XtraBackup Basis/xtrabackup-installation-and-usage.md -------------------------------------------------------------------------------- /Skills/Percona XtraBackup/Percona XtraBackup Basis/xtrabackup-优化版部署.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Percona XtraBackup/Percona XtraBackup Basis/xtrabackup-优化版部署.md -------------------------------------------------------------------------------- /Skills/Percona XtraBackup/Percona XtraBackup Source Code Analysis/xtrabackup-full-backup-SC-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Percona XtraBackup/Percona XtraBackup Source Code Analysis/xtrabackup-full-backup-SC-analysis.md -------------------------------------------------------------------------------- /Skills/Percona XtraBackup/Percona XtraBackup Source Code Analysis/xtrabackup-restore-backup-SC-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Percona XtraBackup/Percona XtraBackup Source Code Analysis/xtrabackup-restore-backup-SC-analysis.md -------------------------------------------------------------------------------- /Skills/PowerShell/powershell-beautification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/PowerShell/powershell-beautification.md -------------------------------------------------------------------------------- /Skills/Sysbench/sysbench-basis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Sysbench/sysbench-basis.md -------------------------------------------------------------------------------- /Skills/Thrift/thrift-basis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Skills/Thrift/thrift-basis.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/分治算法/分治算法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/分治算法/分治算法.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/动态规划/动态规划.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/动态规划/动态规划.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/区间求和/前缀和.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/区间求和/前缀和.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/区间求和/差分.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/区间求和/差分.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/双指针/左右指针/二分查找.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/双指针/左右指针/二分查找.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/双指针/左右指针/滑动窗口.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/双指针/左右指针/滑动窗口.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/双指针/快慢指针/快慢指针.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/双指针/快慢指针/快慢指针.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/图算法/二分图/匈牙利算法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/图算法/二分图/匈牙利算法.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/图算法/单源最短路径/Bellman-Ford.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/图算法/单源最短路径/Bellman-Ford.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/图算法/单源最短路径/Dijkstra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/图算法/单源最短路径/Dijkstra.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/图算法/单源最短路径/SPFA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/图算法/单源最短路径/SPFA.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/图算法/启发式搜索.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/图算法/启发式搜索.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/图算法/基本图算法/BFS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/图算法/基本图算法/BFS.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/图算法/基本图算法/DFS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/图算法/基本图算法/DFS.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/图算法/基本图算法/回溯算法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/图算法/基本图算法/回溯算法.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/图算法/基本图算法/强连通分量.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/图算法/基本图算法/强连通分量.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/图算法/基本图算法/拓扑排序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/图算法/基本图算法/拓扑排序.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/图算法/多源最短路径/Floyd-Warshall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/图算法/多源最短路径/Floyd-Warshall.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/图算法/最小生成树/Kruskal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/图算法/最小生成树/Kruskal.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/图算法/最小生成树/Prim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/图算法/最小生成树/Prim.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/图算法/树的遍历/树的遍历.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/图算法/树的遍历/树的遍历.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/图算法/网络流/最大流.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/图算法/网络流/最大流.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/排序算法/归并排序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/排序算法/归并排序.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/排序算法/快速排序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/排序算法/快速排序.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/数学/信息熵&进制转化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/数学/信息熵&进制转化.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/数学/拒绝采样.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/数学/拒绝采样.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/数学/摩尔投票.md: -------------------------------------------------------------------------------- 1 | # 摩尔投票算法 2 | 3 | TODO 4 | 5 | 229. 求众数 II 6 | 230. 面试题 17.10. 主要元素 -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/数学/洗牌算法.md: -------------------------------------------------------------------------------- 1 | # 洗牌算法 2 | 3 | TODO 4 | 5 | https://cloud.tencent.com/developer/article/1462951 6 | 7 | 384. 打乱数组 8 | -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/算法分析/复杂度分析.md: -------------------------------------------------------------------------------- 1 | # 算法复杂度分析 2 | 3 | TODO -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Algorithm/通用技巧/通用技巧.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Algorithm/通用技巧/通用技巧.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Data Structure/栈/单调栈.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Data Structure/栈/单调栈.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Data Structure/树/字典树.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Data Structure/树/字典树.md -------------------------------------------------------------------------------- /Subjects/Data Structure & Algorithm/Data Structure/树/并查集.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Data Structure & Algorithm/Data Structure/树/并查集.md -------------------------------------------------------------------------------- /Subjects/Distributed Systems/2 共识算法/ParallelRaft/ParallelRaft-basis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Distributed Systems/2 共识算法/ParallelRaft/ParallelRaft-basis.md -------------------------------------------------------------------------------- /Subjects/Distributed Systems/分布式文件系统/PolarFS/PolarFS-basis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Subjects/Distributed Systems/分布式文件系统/PolarFS/PolarFS-basis.md -------------------------------------------------------------------------------- /Tools/IDEA/idea-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Tools/IDEA/idea-learning.md -------------------------------------------------------------------------------- /Tools/VS Code/vs-code-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Tools/VS Code/vs-code-learning.md -------------------------------------------------------------------------------- /Tools/VS Code/vs-code-remote-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Tools/VS Code/vs-code-remote-development.md -------------------------------------------------------------------------------- /Tools/Xshell/xshell-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Tools/Xshell/xshell-learning.md -------------------------------------------------------------------------------- /Tools/Xshell/xshell-ssh-password-free-login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stranded-fish/CS-Study-Notes/HEAD/Tools/Xshell/xshell-ssh-password-free-login.md --------------------------------------------------------------------------------