Skip to content

Commit e49bf79

Browse files
authored
Update README.md
1 parent fdfb2d9 commit e49bf79

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

README.md

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22

33
用于提供 https://github.com/CyC2018/CS-Notes 项目的离线阅读
44

5-
**pdf使用 cmd-markdown 的付费工具手工进行pdf的转换**
5+
**pdf 使用 cmd-markdown 的付费工具手工进行 pdf 的转换**
66

7-
原作者已经制作好gitbook地址https://legacy.gitbook.com/book/cyc2018/interview-notebook/details
7+
原作者已经制作好 gitbook 地址https://legacy.gitbook.com/book/cyc2018/interview-notebook/details
88

99
**那么为什么还需要本仓库?**
10-
我个人认为**cmd-markdown工具所转化的pdf**相比gitbook直接生成的pdf拥有**更好的阅读体验!**
10+
我个人认为**cmd-markdown 工具所转化的 pdf**相比 gitbook 直接生成的 pdf 拥有**更好的阅读体验!**
1111

1212
# 额外资料推荐
1313

14-
- 新增[机器学习小抄](https://pan.baidu.com/s/1XvwRLqgAnUtMqjNsJT-wTQ), 文件较大,已放在百度云盘。不过README一般也没啥人看,就当个小彩蛋?
15-
- 新增[深度学习500问](https://github.com/scutan90/DeepLearning-500-questions)
16-
- [100-Days-Of-ML-Code中文版](https://github.com/MLEveryday/100-Days-Of-ML-Code)
17-
- [阿里Java手册 1.4.0版本](https://pan.baidu.com/s/1le0nvGP6GIpnczOZldrBGQ)
18-
- [计算机网络-自顶向下 第七版英文原版](https://pan.baidu.com/s/1VPzcjXc0TR1SPIkexM1YTw)
14+
- 新增[机器学习小抄 ](https://pan.baidu.com/s/1XvwRLqgAnUtMqjNsJT-wTQ), 文件较大,已放在百度云盘。不过 README 一般也没啥人看,就当个小彩蛋?
15+
- 新增[深度学习 500 问 ](https://github.com/scutan90/DeepLearning-500-questions)
16+
- [100-Days-Of-ML-Code 中文版 ](https://github.com/MLEveryday/100-Days-Of-ML-Code)
17+
- [阿里 Java 手册 1.4.0 版本 ](https://pan.baidu.com/s/1le0nvGP6GIpnczOZldrBGQ)
18+
- [计算机网络-自顶向下 第七版英文原版 ](https://pan.baidu.com/s/1VPzcjXc0TR1SPIkexM1YTw)
1919
- [深入理解操作系统 第三版英文版原版-CSAPP 3rd](https://pan.baidu.com/s/1yJLb6EHRa0bjka7ryfr6mw)
2020

2121

@@ -35,21 +35,21 @@
3535

3636
## 算法 :pencil2:
3737

38-
> [剑指 Offer 题解](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/剑指%20offer%20题解.md)
38+
> [剑指 Offer 题解 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/剑指%20offer%20 题解.md)
3939
4040
目录根据原书第二版进行编排,代码和原书有所不同,尽量比原书更简洁。
4141

42-
> [Leetcode 题解](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Leetcode%20题解.md)
42+
> [Leetcode 题解 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Leetcode%20 题解.md)
4343
4444
对题目做了一个大致分类,并对每种题型的解题思路做了总结。
4545

46-
> [算法](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/算法.md)
46+
> [算法 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/算法.md)
4747
4848
排序、并查集、栈和队列、红黑树、散列表。
4949

5050
## 操作系统 :computer:
5151

52-
> [计算机操作系统](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/计算机操作系统.md)
52+
> [计算机操作系统 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/计算机操作系统.md)
5353
5454
进程管理、内存管理、设备管理、链接。
5555

@@ -59,7 +59,7 @@
5959

6060
## 网络 :cloud:
6161

62-
> [计算机网络](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/计算机网络.md)
62+
> [计算机网络 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/计算机网络.md)
6363
6464
物理层、链路层、网络层、运输层、应用层。
6565

@@ -73,25 +73,25 @@ I/O 模型、I/O 多路复用。
7373

7474
## 面向对象 :couple:
7575

76-
> [设计模式](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/设计模式.md)
76+
> [设计模式 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/设计模式.md)
7777
7878
实现了 Gof 的 23 种设计模式。
7979

80-
> [面向对象思想](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/面向对象思想.md)
80+
> [面向对象思想 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/面向对象思想.md)
8181
8282
三大原则(继承、封装、多态)、类图、设计原则。
8383

8484
## 数据库 :floppy_disk:
8585

86-
> [数据库系统原理](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/数据库系统原理.md)
86+
> [数据库系统原理 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/数据库系统原理.md)
8787
8888
事务、锁、隔离级别、MVCC、间隙锁、范式。
8989

9090
> [SQL](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/SQL.md)
9191
9292
SQL 基本语法。
9393

94-
> [Leetcode-Database 题解](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Leetcode-Database%20题解.md)
94+
> [Leetcode-Database 题解 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Leetcode-Database%20 题解.md)
9595
9696
Leetcode 上数据库题目的解题记录。
9797

@@ -105,19 +105,19 @@ Leetcode 上数据库题目的解题记录。
105105

106106
## Java :coffee:
107107

108-
> [Java 基础](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Java%20基础.md)
108+
> [Java 基础 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Java%20 基础.md)
109109
110110
不会涉及很多基本语法介绍,主要是一些实现原理以及关键特性。
111111

112-
> [Java 容器](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Java%20容器.md)
112+
> [Java 容器 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Java%20 容器.md)
113113
114114
源码分析:ArrayList、Vector、CopyOnWriteArrayList、LinkedList、HashMap、ConcurrentHashMap、LinkedHashMap、WeekHashMap。
115115

116-
> [Java 并发](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Java%20并发.md)
116+
> [Java 并发 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Java%20 并发.md)
117117
118118
线程使用方式、两种互斥同步方法、线程协作、JUC、线程安全、内存模型、锁优化。
119119

120-
> [Java 虚拟机](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Java%20虚拟机.md)
120+
> [Java 虚拟机 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Java%20 虚拟机.md)
121121
122122
运行时数据区域、垃圾收集、类加载。
123123

@@ -127,27 +127,27 @@ NIO 的原理以及实例。
127127

128128
## 系统设计 :bulb:
129129

130-
> [系统设计基础](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/系统设计基础.md)
130+
> [系统设计基础 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/系统设计基础.md)
131131
132132
性能、伸缩性、扩展性、可用性、安全性
133133

134-
> [分布式](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/分布式.md)
134+
> [分布式 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/分布式.md)
135135
136136
分布式锁、分布式事务、CAP、BASE、Paxos、Raft
137137

138-
> [集群](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/集群.md)
138+
> [集群 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/集群.md)
139139
140140
负载均衡、Session 管理
141141

142-
> [攻击技术](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/攻击技术.md)
142+
> [攻击技术 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/攻击技术.md)
143143
144144
XSS、CSRF、SQL 注入、DDoS
145145

146-
> [缓存](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/缓存.md)
146+
> [缓存 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/缓存.md)
147147
148148
缓存特征、缓存位置、缓存问题、数据分布、一致性哈希、LRU、CDN
149149

150-
> [消息队列](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/消息队列.md)
150+
> [消息队列 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/消息队列.md)
151151
152152
消息处理模型、使用场景、可靠性
153153

@@ -161,25 +161,25 @@ XSS、CSRF、SQL 注入、DDoS
161161
162162
Docker 基本原理。
163163

164-
> [正则表达式](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/正则表达式.md)
164+
> [正则表达式 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/正则表达式.md)
165165
166166
正则表达式基本语法。
167167

168-
> [构建工具](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/构建工具.md)
168+
> [构建工具 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/构建工具.md)
169169
170170
构建工具的基本概念、主流构建工具介绍。
171171

172172
## 编码实践 :speak_no_evil:
173173

174-
> [重构](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/重构.md)
174+
> [重构 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/重构.md)
175175
176176
参考 重构 改善既有代码的设计。
177177

178-
> [代码可读性](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/代码可读性.md)
178+
> [代码可读性 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/代码可读性.md)
179179
180180
参考 编写可读代码的艺术。
181181

182-
> [代码风格规范](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/代码风格规范.md)
182+
> [代码风格规范 ](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/代码风格规范.md)
183183
184184
Google 开源项目的代码风格规范。
185185

0 commit comments

Comments
 (0)