Skip to content

Commit a481561

Browse files
committed
修正目录
1 parent cdccf94 commit a481561

File tree

2 files changed

+137
-21
lines changed

2 files changed

+137
-21
lines changed

SUMMARY.md

Lines changed: 118 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 目录
2+
3+
* [简介](README.md)
4+
5+
##LNMP
6+
17
* [Linux部分](Linux/README.md)
28
* [Linux基本操作命令](Linux/Linux命令.md)
39
* [Linux网络相关命令](Linux/Linux命令2.md)
@@ -9,26 +15,120 @@
915
* [IO模型](Linux/LinuxIO模型.md)
1016
* [LAMP/LNMP](Linux/lanmp.md)
1117

12-
* [MySQL部分](Mysql/README.md)
18+
- [MySQL部分](Mysql/README.md)
19+
* [SQL语法](Mysql/SQL标准.md)
20+
* [数据库范式](Mysql/MySQL三范式.md)
21+
* [存储引擎](Mysql/存储引擎.md)
22+
* [事务](Mysql/事务.md)
23+
* [索引](Mysql/索引.md)
24+
* [explain分析SQL](Mysql/explain.md)
25+
* [MySQL优化](Mysql/MySQL优化.md)
26+
* [MySQL索引原理及慢查询优化](Mysql/MySQL索引原理及慢查询优化.md)
27+
- [MongoDB](MongoDb/MongoDB.md)
28+
- [PHP](PHP/README.md)
29+
- [PHP7](PHP/php7.md)
30+
- [面向对象OOP](https://github.com/xianyunyh/PHP-Interview/blob/master)
31+
- [Zval结构](PHP/PHP-Zval结构.md)
32+
- [HashTable](PHP/PHP7-HashTable.md)
33+
- [Swoole](https://swoole.com)
34+
- [PHP运行原理](PHP/PHP运行原理.md)
35+
- [正则表达式](PHP/正则表达式.md)
36+
- [PHP-FPM](PHP/PHP-FPM配置选项.md)
37+
38+
## 操作系统和网络
39+
40+
- [计算机网络](计算机网络/README.md)
41+
* [IP协议](计算机网络/IP协议.md)
42+
- [TCP协议](计算机网络/TCP协议.md)
43+
- [UDP协议](计算机网络/UDP协议.md)
44+
- [HTTP协议](计算机网络/HTTP协议.md)
45+
- [HTTPS协议](计算机网络/HTTPS.md)
46+
- [HTTP2协议](计算机网络/HTTP2.md)
47+
- [Webscokt](计算机网络/Webscokt.md)
48+
49+
- [版本控制器]()
50+
51+
- [Git](版本控制器/Git.md)
52+
- SVN
53+
54+
## 数据结构和算法
55+
56+
- [数据结构](数据结构/README.md)
57+
- [数组](数据结构/数组.md)
58+
- 链表
59+
- [单链表]()
60+
- [双链表]()
61+
- [队列]()
62+
- []()
63+
- []()
64+
- [集合]()
65+
-
66+
- [二叉树]()
67+
- [二叉查找树]()
68+
- [红黑树]()
69+
- [B-Tree、B+Tree]()
70+
- [](https://github.com/xianyunyh/PHP-Interview/blob/master)
71+
- [算法](算法/Readme.md)
72+
- 排序算法
73+
- [冒泡排序](https://github.com/PuShaoWei/arithmetic-php/blob/master/package/Sort/BubbleSort.php)
74+
- [选择排序](https://github.com/PuShaoWei/arithmetic-php/blob/master/package/Sort/SelectSort.php)
75+
- [插入排序](https://github.com/PuShaoWei/arithmetic-php/blob/master/package/Sort/InsertSort.php)
76+
- [快速排序](https://github.com/PuShaoWei/arithmetic-php/blob/master/package/Sort/QuickSort.php)
77+
- [堆排序](https://github.com/PuShaoWei/arithmetic-php/blob/master/package/Sort/HeapSort.php)
78+
- [归并排序](https://github.com/PuShaoWei/arithmetic-php/blob/master/package/Sort/MergeSort.php)
79+
80+
- 查找算法
81+
- [二分查找](https://github.com/PuShaoWei/arithmetic-php/blob/master/package/Query/BinaryQuery.php)
82+
- [hash](https://github.com/xianyunyh/PHP-Interview/blob/master)
83+
- [KPM](https://github.com/PuShaoWei/arithmetic-php/blob/master/package/Query/Kmp.php)
84+
85+
- 其他
86+
- 布隆过滤器
87+
88+
- 贪心算法
89+
90+
- 回溯算法
91+
92+
- 动态规划
93+
94+
- 最小生成树
95+
96+
- 最短路径
97+
98+
- 推荐算法
99+
100+
- 深度优先、广度优先
101+
102+
- [编程之法:面试和算法心得](https://wizardforcel.gitbooks.io/the-art-of-programming-by-july/content/03.02.html)
13103

14-
- [SQL语法](Mysql/SQL标准.md)
15-
- [数据库范式](Mysql/MySQL三范式.md)
16-
- [存储引擎](Mysql/存储引擎.md)
17-
- [事务](Mysql/事务.md)
18-
- [索引](Mysql/索引.md)
19-
- [explain分析SQL](Mysql/explain.md)
20-
- [MySQL优化](Mysql/MySQL优化.md)
21-
- [MySQL索引原理及慢查询优化](Mysql/MySQL索引原理及慢查询优化.md)
104+
- [剑指offer-PHP实现](https://blog.csdn.net/column/details/15795.html)
22105

23-
* [MongoDB](MongoDb/MongoDB.md)
106+
## 系统设计和架构
24107

25-
* [计算机网络]()
108+
- [架构和系统设计](架构和系统设计/README.md)
109+
- [消息队列](MQ/README.md)
110+
- [RabbitMQ](MQ/rabbitmq.md)
111+
- [ActiveMq]()
112+
- [Nsq]()
113+
- [kafka]()
114+
- [缓存系统]()
115+
- [Redis](Cache/Redis.md)
116+
- [Memcache]()
117+
- [设计模式](设计模式/README.md)
118+
- [创造型](设计模式/Creational.md)
119+
- [行为型](设计模式/Behavioral.md)
120+
- [结构型](设计模式/Structural.md)
121+
- [PHP实现23种设计模式](https://github.com/domnikl/DesignPatternsPHP)
26122

27-
- [IP协议](计算机网络/IP协议.md)
28-
- [TCP协议](计算机网络/TCP协议.md)
29-
- [UDP协议](计算机网络/UDP协议.md)
123+
## 面试
30124

31-
- [HTTP协议](计算机网络/HTTP协议.md)
32-
- [HTTPS协议](计算机网络/HTTPS.md)
33-
- [HTTP2协议](计算机网络/HTTP2.md)
34-
- [Webscokt](计算机网络/Webscokt.md)
125+
- [裸辞应对](面试/03裸辞应对.md)
126+
- [写简历](面试/02写简历.md)
127+
- [笔试]()
128+
- [笔试题1](面试/笔试题.md)
129+
- [笔试题2](笔试/笔试题2.md)
130+
- [笔试题3](笔试/笔试题3.md)
131+
- [笔试题4](笔试/笔试题4.md)
132+
- [面试问答]()
133+
- [离职原因](面试/01离职原因回答.md)
134+
- [面试提问](面试/04面试提问.md)

book.json

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,34 @@
44
"language": "zh-hans",
55
"extension": null,
66
"generator": "site",
7+
"gitbook": "3.x.x",
78
"plugins": [
89
"github",
910
"anchors",
1011
"theme-comscore",
11-
"expandable-chapters"
12+
"expandable-chapters-small",
13+
"search-plus",
14+
"-search"
1215
],
1316
"pluginsConfig": {
1417
"github": {
1518
"url": "https://github.com/xianyunyh/PHP-Interview"
1619
},
1720
"theme-default": {
1821
"showLevel": true
19-
}
20-
}
22+
},
23+
"search-pro": {
24+
"cutWordLib": "nodejieba",
25+
"defineWord" : ["Gitbook Use"]
26+
}
27+
},
28+
"links": {
29+
"gitbook": false,
30+
"sharing": {
31+
"google": false,
32+
"facebook": false,
33+
"twitter": false,
34+
"all": false
35+
}
36+
}
2137
}

0 commit comments

Comments
 (0)