Skip to content

Commit 998967e

Browse files
committed
'修正目录'
1 parent 4adf6c7 commit 998967e

File tree

1 file changed

+25
-33
lines changed

1 file changed

+25
-33
lines changed

README.md

Lines changed: 25 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -24,38 +24,36 @@
2424

2525
- [Mongodb](MongoDb/MongoDB.md)
2626

27-
- [计算机网络](操作系统/README.md)
27+
- [计算机网络](计算机网络/README.md)
2828

29-
- [IP协议]()
29+
- [IP协议](计算机网络/IP协议.md)
3030

31-
- [TCP协议](https://github.com/xianyunyh/PHP-Interview/blob/master/%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%BD%91%E7%BB%9C/TCP%E5%8D%8F%E8%AE%AE.md)
32-
- [UDP协议](https://github.com/xianyunyh/PHP-Interview/blob/master/%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%BD%91%E7%BB%9C/UDP%E5%8D%8F%E8%AE%AE.md)
33-
- [HTTP协议](https://github.com/xianyunyh/PHP-Interview/blob/master/%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%BD%91%E7%BB%9C/HTTP%E5%8D%8F%E8%AE%AE.md)
34-
- [HTTPS/HTTP2/HTTP](https://github.com/xianyunyh/PHP-Interview/blob/master/%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%BD%91%E7%BB%9C/HTTP2.md)
31+
- [TCP协议](计算机网络/TCP协议.md)
32+
- [UDP协议](计算机网络/UDP协议.md)
33+
- [HTTP协议](计算机网络/HTTP协议)
34+
- [HTTPS/HTTP2/HTTP](计算机网络/HTTP2.md)
3535

36-
- [版本控制器](https://github.com/xianyunyh/PHP-Interview/tree/master/%E7%89%88%E6%9C%AC%E6%8E%A7%E5%88%B6%E5%99%A8)
36+
- [版本控制器](版本控制器/Git.md)
3737

38-
- [Git](https://github.com/xianyunyh/PHP-Interview/blob/master/%E7%89%88%E6%9C%AC%E6%8E%A7%E5%88%B6%E5%99%A8/Git.md)
38+
- [Git](版本控制器/Git.md)
3939
- [SVN]()
4040

41-
- [数据结构](https://github.com/xianyunyh/PHP-Interview/tree/master/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84)
42-
43-
- [数组]()
44-
- [链表]()
45-
- [单链表]()
46-
- [双链表]()
47-
- [队列]()
48-
- []()
49-
- []()
50-
- [集合]()
51-
- []()
41+
- [数据结构](数据结构/README.md)
42+
43+
- [数组](数据结构/数组.md)
44+
- [链表](数据结构/链表.md)
45+
- [队列](数据结构/队列.md)
46+
- [](数据结构/栈.md)
47+
- [](数据结构/堆.md)
48+
- [集合](数据结构/集合.md)
49+
- [](数据结构/树.md)
5250
- [二叉树 ]()
5351
- [二叉查找树]()
5452
- [红黑树]()
5553
- [B-Tree、B+Tree]()
5654
- []()
5755

58-
- [算法](https://github.com/xianyunyh/PHP-Interview/tree/master/%E7%AE%97%E6%B3%95)
56+
- [算法](算法/README.md)
5957

6058
- [排序算法]()
6159
- [冒泡排序](https://github.com/PuShaoWei/arithmetic-php/blob/master/package/Sort/BubbleSort.php)
@@ -79,35 +77,29 @@
7977
- 深度优先、广度优先
8078
- [编程之法:面试和算法心得](https://wizardforcel.gitbooks.io/the-art-of-programming-by-july/content/03.02.html)
8179

82-
- [消息队列](https://github.com/xianyunyh/PHP-Interview/tree/master/MQ)
80+
- [消息队列](MQ/README.md)
8381

84-
- [RabbitMQ](https://github.com/xianyunyh/PHP-Interview/blob/master/MQ/rabbitmq.md)
82+
- [RabbitMQ](MQ/rabbitmq.md)
8583
- [ActiveMq]()
8684
- [Nsq]()
8785
- [kafka]()
8886

8987
- [缓存系统]()
9088

91-
- [Redis](https://github.com/xianyunyh/PHP-Interview/blob/master/Cache/Redis.md)
89+
- [Redis](Cache/Redis.md)
9290
- [Memcache]()
9391

94-
- [PHP](https://github.com/xianyunyh/PHP-Interview/tree/master/PHP)
92+
- [PHP](PHP/README.md)
9593

96-
- [PHP7](https://github.com/xianyunyh/PHP-Interview/blob/master/PHP/php7.md)
94+
- [PHP7](PHP/php7.md)
9795
- [面向对象OOP]()
9896
- [Zval](https://github.com/xianyunyh/PHP-Interview/blob/master/PHP/PHP-Zval%E7%BB%93%E6%9E%84.md)
9997
- [HashTable](https://github.com/xianyunyh/PHP-Interview/blob/master/PHP/PHP7-HashTable.md)
10098
- [Swoole]()
10199

102-
- [设计模式](https://github.com/xianyunyh/PHP-Interview/tree/master/%E8%AE%BE%E8%AE%A1%E6%A8%A1%E5%BC%8F)
103-
104-
- [工厂模式]()
105-
- [单例模式]()
106-
- [观察者模式]()
107-
- [适配器模式]()
108-
- [门面模式]()
100+
- [设计模式](设计模式/README.md)
109101

110-
- [面试](https://github.com/xianyunyh/PHP-Interview/tree/master/%E9%9D%A2%E8%AF%95)
102+
- [面试](面试/README.md)
111103

112104

113105

0 commit comments

Comments
 (0)