|
34 | 34 | | :--------: | :---------: | :---------: | :---------: | :---------: | :---------:| :---------: | :-------: | :-------:| :------:| |
35 | 35 | | 算法[:pencil2:](#算法-pencil2) | 操作系统[:computer:](#操作系统-computer)|网络[:cloud:](#网络-cloud) | 面向对象[:couple:](#面向对象-couple) |数据库[:floppy_disk:](#数据库-floppy_disk)| Java [:coffee:](#java-coffee)| 系统设计[:bulb:](#系统设计-bulb)| 工具[:hammer:](#工具-hammer)| 编码实践[:speak_no_evil:](#编码实践-speak_no_evil)| 后记[:memo:](#后记-memo) | |
36 | 36 |
|
37 | | -## 算法 :pencil2: |
| 37 | +### :pencil2: 算法 |
38 | 38 |
|
39 | | -> [剑指 Offer 题解 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/剑指%20offer%20题解.md) |
| 39 | +- [剑指 Offer 题解](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/剑指%20offer%20题解.md) |
| 40 | +- [Leetcode 题解](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/Leetcode%20题解.md) |
| 41 | +- [算法](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/算法.md) |
40 | 42 |
|
41 | | -目录根据原书第二版进行编排,代码和原书有所不同,尽量比原书更简洁。 |
| 43 | +### :computer: 操作系统 |
42 | 44 |
|
43 | | -> [Leetcode 题解 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Leetcode%20题解.md) |
| 45 | +- [计算机操作系统](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/计算机操作系统.md) |
| 46 | +- [Linux](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/Linux.md) |
44 | 47 |
|
45 | | -对题目做了一个大致分类,并对每种题型的解题思路做了总结。 |
| 48 | +### :cloud: 网络 |
46 | 49 |
|
47 | | -> [算法 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/算法.md) |
| 50 | +- [计算机网络](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/计算机网络.md) |
| 51 | +- [HTTP](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/HTTP.md) |
| 52 | +- [Socket](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/Socket.md) |
48 | 53 |
|
49 | | -排序、并查集、栈和队列、红黑树、散列表。 |
| 54 | +### :couple: 面向对象 |
50 | 55 |
|
51 | | -## 操作系统 :computer: |
| 56 | +- [设计模式](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/设计模式.md) |
| 57 | +- [面向对象思想](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/面向对象思想.md) |
52 | 58 |
|
53 | | -> [计算机操作系统 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/计算机操作系统.md) |
| 59 | +### :floppy_disk: 数据库 |
54 | 60 |
|
55 | | -进程管理、内存管理、设备管理、链接。 |
| 61 | +- [数据库系统原理](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/数据库系统原理.md) |
| 62 | +- [SQL](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/SQL.md) |
| 63 | +- [Leetcode-Database 题解](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/Leetcode-Database%20题解.md) |
| 64 | +- [MySQL](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/MySQL.md) |
| 65 | +- [Redis](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/Redis.md) |
56 | 66 |
|
57 | | -> [Linux](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Linux.md) |
| 67 | +### :coffee: Java |
58 | 68 |
|
59 | | -基本实现原理以及基本操作。 |
| 69 | +- [Java 基础](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/Java%20基础.md) |
| 70 | +- [Java 容器](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/Java%20容器.md) |
| 71 | +- [Java 并发](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/Java%20并发.md) |
| 72 | +- [Java 虚拟机](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/Java%20虚拟机.md) |
| 73 | +- [Java I/O](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/Java%20IO.md) |
60 | 74 |
|
61 | | -## 网络 :cloud: |
| 75 | +### :bulb: 系统设计 |
62 | 76 |
|
63 | | -> [计算机网络 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/计算机网络.md) |
| 77 | +- [系统设计基础](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/系统设计基础.md) |
| 78 | +- [分布式](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/分布式.md) |
| 79 | +- [集群](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/集群.md) |
| 80 | +- [攻击技术](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/攻击技术.md) |
| 81 | +- [缓存](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/缓存.md) |
| 82 | +- [消息队列](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/消息队列.md) |
64 | 83 |
|
65 | | -物理层、链路层、网络层、运输层、应用层。 |
| 84 | +### :hammer: 工具 |
66 | 85 |
|
67 | | -> [HTTP](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/HTTP.md) |
| 86 | +- [Git](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/Git.md) |
| 87 | +- [Docker](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/Docker.md) |
| 88 | +- [构建工具](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/构建工具.md) |
| 89 | +- [正则表达式](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/正则表达式.md) |
68 | 90 |
|
69 | | -方法、状态码、Cookie、缓存、连接管理、HTTPs、HTTP 2.0。 |
| 91 | +### :speak_no_evil: 编码实践 |
70 | 92 |
|
71 | | -> [Socket](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Socket.md) |
72 | | -
|
73 | | -I/O 模型、I/O 多路复用。 |
74 | | - |
75 | | -## 面向对象 :couple: |
76 | | - |
77 | | -> [设计模式 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/设计模式.md) |
78 | | -
|
79 | | -实现了 Gof 的 23 种设计模式。 |
80 | | - |
81 | | -> [面向对象思想 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/面向对象思想.md) |
82 | | -
|
83 | | -三大原则(继承、封装、多态)、类图、设计原则。 |
84 | | - |
85 | | -## 数据库 :floppy_disk: |
86 | | - |
87 | | -> [数据库系统原理 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/数据库系统原理.md) |
88 | | -
|
89 | | -事务、锁、隔离级别、MVCC、间隙锁、范式。 |
90 | | - |
91 | | -> [SQL](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/SQL.md) |
92 | | -
|
93 | | -SQL 基本语法。 |
94 | | - |
95 | | -> [Leetcode-Database 题解 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Leetcode-Database%20题解.md) |
96 | | -
|
97 | | -Leetcode 上数据库题目的解题记录。 |
98 | | - |
99 | | -> [MySQL](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/MySQL.md) |
100 | | -
|
101 | | -存储引擎、索引、查询优化、切分、复制。 |
102 | | - |
103 | | -> [Redis](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Redis.md) |
104 | | -
|
105 | | -五种数据类型、字典和跳跃表数据结构、使用场景、和 Memcache 的比较、淘汰策略、持久化、文件事件的 Reactor 模式、复制。 |
106 | | - |
107 | | -## Java :coffee: |
108 | | - |
109 | | -> [Java 基础 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Java%20基础.md) |
110 | | -
|
111 | | -不会涉及很多基本语法介绍,主要是一些实现原理以及关键特性。 |
112 | | - |
113 | | -> [Java 容器 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Java%20容器.md) |
114 | | -
|
115 | | -源码分析:ArrayList、Vector、CopyOnWriteArrayList、LinkedList、HashMap、ConcurrentHashMap、LinkedHashMap、WeekHashMap。 |
116 | | - |
117 | | -> [Java 并发 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Java%20并发.md) |
118 | | -
|
119 | | -线程使用方式、两种互斥同步方法、线程协作、JUC、线程安全、内存模型、锁优化。 |
120 | | - |
121 | | -> [Java 虚拟机 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Java%20虚拟机.md) |
122 | | -
|
123 | | -运行时数据区域、垃圾收集、类加载。 |
124 | | - |
125 | | -> [Java I/O](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Java%20IO.md) |
126 | | -
|
127 | | -NIO 的原理以及实例。 |
128 | | - |
129 | | -## 系统设计 :bulb: |
130 | | - |
131 | | -> [系统设计基础 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/系统设计基础.md) |
132 | | -
|
133 | | -性能、伸缩性、扩展性、可用性、安全性 |
134 | | - |
135 | | -> [分布式 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/分布式.md) |
136 | | -
|
137 | | -分布式锁、分布式事务、CAP、BASE、Paxos、Raft |
138 | | - |
139 | | -> [集群 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/集群.md) |
140 | | -
|
141 | | -负载均衡、Session 管理 |
142 | | - |
143 | | -> [攻击技术 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/攻击技术.md) |
144 | | -
|
145 | | -XSS、CSRF、SQL 注入、DDoS |
146 | | - |
147 | | -> [缓存 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/缓存.md) |
148 | | -
|
149 | | -缓存特征、缓存位置、缓存问题、数据分布、一致性哈希、LRU、CDN |
150 | | - |
151 | | -> [消息队列 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/消息队列.md) |
152 | | -
|
153 | | -消息处理模型、使用场景、可靠性 |
154 | | - |
155 | | -## 工具 :hammer: |
156 | | - |
157 | | -> [Git](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Git.md) |
158 | | -
|
159 | | -一些 Git 的使用和概念。 |
160 | | - |
161 | | -> [Docker](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Docker.md) |
162 | | -
|
163 | | -Docker 基本原理。 |
164 | | - |
165 | | -> [正则表达式 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/正则表达式.md) |
166 | | -
|
167 | | -正则表达式基本语法。 |
168 | | - |
169 | | -> [构建工具 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/构建工具.md) |
170 | | -
|
171 | | -构建工具的基本概念、主流构建工具介绍。 |
172 | | - |
173 | | -## 编码实践 :speak_no_evil: |
174 | | - |
175 | | -> [重构 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/重构.md) |
176 | | -
|
177 | | -参考 重构 改善既有代码的设计。 |
178 | | - |
179 | | -> [代码可读性 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/代码可读性.md) |
180 | | -
|
181 | | -参考 编写可读代码的艺术。 |
182 | | - |
183 | | -> [代码风格规范 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/代码风格规范.md) |
184 | | -
|
185 | | -Google 开源项目的代码风格规范。 |
| 93 | +- [代码可读性](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/代码可读性.md) |
| 94 | +- [代码风格规范](https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/代码风格规范.md) |
186 | 95 |
|
187 | 96 |
|
188 | 97 | --- |
|
0 commit comments