diff --git a/README.md b/README.md index a328e321..69253fed 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ - [代码可读性](https://github.com/CyC2018/CS-Notes/blob/master/notes/代码可读性.md) - [代码风格规范](https://github.com/CyC2018/CS-Notes/blob/master/notes/代码风格规范.md) -
+
## :memo: 后记 diff --git a/docs/notes/Docker.md b/docs/notes/Docker.md index e4ce1cac..b92ec80d 100644 --- a/docs/notes/Docker.md +++ b/docs/notes/Docker.md @@ -91,4 +91,4 @@ Docker 轻量级的特点使得它很适合用于部署、维护、组合微服 - + diff --git a/docs/notes/Git.md b/docs/notes/Git.md index 06c52b54..4cf1180f 100644 --- a/docs/notes/Git.md +++ b/docs/notes/Git.md @@ -162,4 +162,4 @@ $ ssh-keygen -t rsa -C "youremail@example.com" - + diff --git a/docs/notes/HTTP.md b/docs/notes/HTTP.md index a38f92c7..520c786a 100644 --- a/docs/notes/HTTP.md +++ b/docs/notes/HTTP.md @@ -881,4 +881,4 @@ DELETE /idX/delete HTTP/1.1 -> Returns 404 - + diff --git a/docs/notes/Java IO.md b/docs/notes/Java IO.md index 542a4aea..f76d05be 100644 --- a/docs/notes/Java IO.md +++ b/docs/notes/Java IO.md @@ -622,4 +622,4 @@ NIO 与普通 I/O 的区别主要有以下两点: - + diff --git a/docs/notes/Java 基础.md b/docs/notes/Java 基础.md index 8828d50e..9b5e507e 100644 --- a/docs/notes/Java 基础.md +++ b/docs/notes/Java 基础.md @@ -1435,4 +1435,4 @@ Java 注解是附加在代码中的一些元信息,用于一些工具在编译 - + diff --git a/docs/notes/Java 容器.md b/docs/notes/Java 容器.md index a46569ed..effb1f01 100644 --- a/docs/notes/Java 容器.md +++ b/docs/notes/Java 容器.md @@ -1113,4 +1113,4 @@ public final class ConcurrentCache { - + diff --git a/docs/notes/Java 并发.md b/docs/notes/Java 并发.md index 3a398f73..7178d356 100644 --- a/docs/notes/Java 并发.md +++ b/docs/notes/Java 并发.md @@ -1638,4 +1638,4 @@ JDK 1.6 引入了偏向锁和轻量级锁,从而让锁拥有了四个状态: - + diff --git a/docs/notes/Java 虚拟机.md b/docs/notes/Java 虚拟机.md index 5b6e9db5..9c52a00e 100644 --- a/docs/notes/Java 虚拟机.md +++ b/docs/notes/Java 虚拟机.md @@ -760,4 +760,4 @@ public class FileSystemClassLoader extends ClassLoader { - + diff --git a/docs/notes/Leetcode 题解 - 二分查找.md b/docs/notes/Leetcode 题解 - 二分查找.md index 41872b64..956ab853 100644 --- a/docs/notes/Leetcode 题解 - 二分查找.md +++ b/docs/notes/Leetcode 题解 - 二分查找.md @@ -293,4 +293,4 @@ private int binarySearch(int[] nums, int target) { - + diff --git a/docs/notes/Leetcode 题解 - 位运算.md b/docs/notes/Leetcode 题解 - 位运算.md index 71dca318..d84d242a 100644 --- a/docs/notes/Leetcode 题解 - 位运算.md +++ b/docs/notes/Leetcode 题解 - 位运算.md @@ -420,4 +420,4 @@ public int[] countBits(int num) { - + diff --git a/docs/notes/Leetcode 题解 - 分治.md b/docs/notes/Leetcode 题解 - 分治.md index 3b947f0b..71cd4791 100644 --- a/docs/notes/Leetcode 题解 - 分治.md +++ b/docs/notes/Leetcode 题解 - 分治.md @@ -108,4 +108,4 @@ private List generateSubtrees(int s, int e) { - + diff --git a/docs/notes/Leetcode 题解 - 动态规划.md b/docs/notes/Leetcode 题解 - 动态规划.md index c6632efb..8a3262a3 100644 --- a/docs/notes/Leetcode 题解 - 动态规划.md +++ b/docs/notes/Leetcode 题解 - 动态规划.md @@ -1246,4 +1246,4 @@ public int minSteps(int n) { - + diff --git a/docs/notes/Leetcode 题解 - 双指针.md b/docs/notes/Leetcode 题解 - 双指针.md index 630a5238..efe90a11 100644 --- a/docs/notes/Leetcode 题解 - 双指针.md +++ b/docs/notes/Leetcode 题解 - 双指针.md @@ -242,4 +242,4 @@ private boolean isSubstr(String s, String target) { - + diff --git a/docs/notes/Leetcode 题解 - 哈希表.md b/docs/notes/Leetcode 题解 - 哈希表.md index 6549a7dd..5fa392a8 100644 --- a/docs/notes/Leetcode 题解 - 哈希表.md +++ b/docs/notes/Leetcode 题解 - 哈希表.md @@ -125,4 +125,4 @@ private int maxCount(Map countForNum) { - + diff --git a/docs/notes/Leetcode 题解 - 图.md b/docs/notes/Leetcode 题解 - 图.md index 53318b12..d0c11504 100644 --- a/docs/notes/Leetcode 题解 - 图.md +++ b/docs/notes/Leetcode 题解 - 图.md @@ -259,4 +259,4 @@ private class UF { - + diff --git a/docs/notes/Leetcode 题解 - 字符串.md b/docs/notes/Leetcode 题解 - 字符串.md index b0280560..29546d42 100644 --- a/docs/notes/Leetcode 题解 - 字符串.md +++ b/docs/notes/Leetcode 题解 - 字符串.md @@ -227,4 +227,4 @@ public int countBinarySubstrings(String s) { - + diff --git a/docs/notes/Leetcode 题解 - 排序.md b/docs/notes/Leetcode 题解 - 排序.md index 4f3aab57..f126e00e 100644 --- a/docs/notes/Leetcode 题解 - 排序.md +++ b/docs/notes/Leetcode 题解 - 排序.md @@ -232,4 +232,4 @@ private void swap(int[] nums, int i, int j) { - + diff --git a/docs/notes/Leetcode 题解 - 搜索.md b/docs/notes/Leetcode 题解 - 搜索.md index 43b95c2e..8706d678 100644 --- a/docs/notes/Leetcode 题解 - 搜索.md +++ b/docs/notes/Leetcode 题解 - 搜索.md @@ -1271,4 +1271,4 @@ private void backtracking(int row) { - + diff --git a/docs/notes/Leetcode 题解 - 数学.md b/docs/notes/Leetcode 题解 - 数学.md index 73daa663..70fd61bf 100644 --- a/docs/notes/Leetcode 题解 - 数学.md +++ b/docs/notes/Leetcode 题解 - 数学.md @@ -509,4 +509,4 @@ public int maximumProduct(int[] nums) { - + diff --git a/docs/notes/Leetcode 题解 - 数组与矩阵.md b/docs/notes/Leetcode 题解 - 数组与矩阵.md index b1c621f9..b0b94010 100644 --- a/docs/notes/Leetcode 题解 - 数组与矩阵.md +++ b/docs/notes/Leetcode 题解 - 数组与矩阵.md @@ -435,4 +435,4 @@ public int maxChunksToSorted(int[] arr) { - + diff --git a/docs/notes/Leetcode 题解 - 栈和队列.md b/docs/notes/Leetcode 题解 - 栈和队列.md index d260ece7..7f354a44 100644 --- a/docs/notes/Leetcode 题解 - 栈和队列.md +++ b/docs/notes/Leetcode 题解 - 栈和队列.md @@ -222,4 +222,4 @@ public int[] nextGreaterElements(int[] nums) { - + diff --git a/docs/notes/Leetcode 题解 - 树.md b/docs/notes/Leetcode 题解 - 树.md index 5fc2b4e2..32212a27 100644 --- a/docs/notes/Leetcode 题解 - 树.md +++ b/docs/notes/Leetcode 题解 - 树.md @@ -1122,4 +1122,4 @@ class MapSum { - + diff --git a/docs/notes/Leetcode 题解 - 目录.md b/docs/notes/Leetcode 题解 - 目录.md index e0abe8ae..aee75e3a 100644 --- a/docs/notes/Leetcode 题解 - 目录.md +++ b/docs/notes/Leetcode 题解 - 目录.md @@ -37,4 +37,4 @@ - + diff --git a/docs/notes/Leetcode 题解 - 目录1.md b/docs/notes/Leetcode 题解 - 目录1.md index e175241a..db521b52 100644 --- a/docs/notes/Leetcode 题解 - 目录1.md +++ b/docs/notes/Leetcode 题解 - 目录1.md @@ -37,4 +37,4 @@ - + diff --git a/docs/notes/Leetcode 题解 - 贪心思想.md b/docs/notes/Leetcode 题解 - 贪心思想.md index 4dadad4a..dc194537 100644 --- a/docs/notes/Leetcode 题解 - 贪心思想.md +++ b/docs/notes/Leetcode 题解 - 贪心思想.md @@ -370,4 +370,4 @@ private int char2Index(char c) { - + diff --git a/docs/notes/Leetcode 题解 - 链表.md b/docs/notes/Leetcode 题解 - 链表.md index c194ca4d..56d6dcf9 100644 --- a/docs/notes/Leetcode 题解 - 链表.md +++ b/docs/notes/Leetcode 题解 - 链表.md @@ -345,4 +345,4 @@ public ListNode oddEvenList(ListNode head) { - + diff --git a/docs/notes/Leetcode 题解.md b/docs/notes/Leetcode 题解.md index bfb93950..dc20c006 100644 --- a/docs/notes/Leetcode 题解.md +++ b/docs/notes/Leetcode 题解.md @@ -7,4 +7,4 @@ - + diff --git a/docs/notes/Leetcode-Database 题解.md b/docs/notes/Leetcode-Database 题解.md index 8b83690e..8a017576 100644 --- a/docs/notes/Leetcode-Database 题解.md +++ b/docs/notes/Leetcode-Database 题解.md @@ -1007,4 +1007,4 @@ ORDER BY - + diff --git a/docs/notes/Linux.md b/docs/notes/Linux.md index 8d206097..dbbd8212 100644 --- a/docs/notes/Linux.md +++ b/docs/notes/Linux.md @@ -1247,4 +1247,4 @@ options 参数主要有 WNOHANG 和 WUNTRACED 两个选项,WNOHANG 可以使 w - + diff --git a/docs/notes/MySQL.md b/docs/notes/MySQL.md index 83c3f697..319fa90a 100644 --- a/docs/notes/MySQL.md +++ b/docs/notes/MySQL.md @@ -425,4 +425,4 @@ MySQL 提供了 FROM_UNIXTIME() 函数把 UNIX 时间戳转换为日期,并提 - + diff --git a/docs/notes/Redis.md b/docs/notes/Redis.md index da1e4399..1b3f53d4 100644 --- a/docs/notes/Redis.md +++ b/docs/notes/Redis.md @@ -610,4 +610,4 @@ Redis 没有关系型数据库中的表这一概念来将同种类型的数据 - + diff --git a/docs/notes/SQL.md b/docs/notes/SQL.md index 03297441..93aac8bd 100644 --- a/docs/notes/SQL.md +++ b/docs/notes/SQL.md @@ -773,4 +773,4 @@ SET PASSWROD FOR myuser = Password('new_password'); - + diff --git a/docs/notes/Socket.md b/docs/notes/Socket.md index 1d98bb54..51c0e5d2 100644 --- a/docs/notes/Socket.md +++ b/docs/notes/Socket.md @@ -325,4 +325,4 @@ poll 没有最大描述符数量的限制,如果平台支持并且对实时性 - + diff --git a/docs/notes/代码可读性.md b/docs/notes/代码可读性.md index f6995f62..5e7dcfb8 100644 --- a/docs/notes/代码可读性.md +++ b/docs/notes/代码可读性.md @@ -335,4 +335,4 @@ public int findClostElement(int[] arr) { - + diff --git a/docs/notes/代码风格规范.md b/docs/notes/代码风格规范.md index 05c7aa21..8c0eaa99 100644 --- a/docs/notes/代码风格规范.md +++ b/docs/notes/代码风格规范.md @@ -9,4 +9,4 @@ - + diff --git a/docs/notes/分布式.md b/docs/notes/分布式.md index 987145c6..1cc8e579 100644 --- a/docs/notes/分布式.md +++ b/docs/notes/分布式.md @@ -344,4 +344,4 @@ Raft 也是分布式一致性协议,主要是用来竞选主节点。 - + diff --git a/docs/notes/剑指 Offer 题解 - 10~19.md b/docs/notes/剑指 Offer 题解 - 10~19.md index 2f21e4e3..f9dcd729 100644 --- a/docs/notes/剑指 Offer 题解 - 10~19.md +++ b/docs/notes/剑指 Offer 题解 - 10~19.md @@ -694,4 +694,4 @@ public boolean match(char[] str, char[] pattern) { - + diff --git a/docs/notes/剑指 Offer 题解 - 20~29.md b/docs/notes/剑指 Offer 题解 - 20~29.md index a0f14581..45278331 100644 --- a/docs/notes/剑指 Offer 题解 - 20~29.md +++ b/docs/notes/剑指 Offer 题解 - 20~29.md @@ -392,4 +392,4 @@ public ArrayList printMatrix(int[][] matrix) { - + diff --git a/docs/notes/剑指 Offer 题解 - 30~39.md b/docs/notes/剑指 Offer 题解 - 30~39.md index b9e87ec8..413a5de5 100644 --- a/docs/notes/剑指 Offer 题解 - 30~39.md +++ b/docs/notes/剑指 Offer 题解 - 30~39.md @@ -472,4 +472,4 @@ public int MoreThanHalfNum_Solution(int[] nums) { - + diff --git a/docs/notes/剑指 Offer 题解 - 3~9.md b/docs/notes/剑指 Offer 题解 - 3~9.md index 217c70dd..12259bc9 100644 --- a/docs/notes/剑指 Offer 题解 - 3~9.md +++ b/docs/notes/剑指 Offer 题解 - 3~9.md @@ -363,4 +363,4 @@ public int pop() throws Exception { - + diff --git a/docs/notes/剑指 Offer 题解 - 40~49.md b/docs/notes/剑指 Offer 题解 - 40~49.md index cfe904d4..c45352e0 100644 --- a/docs/notes/剑指 Offer 题解 - 40~49.md +++ b/docs/notes/剑指 Offer 题解 - 40~49.md @@ -420,4 +420,4 @@ public int GetUglyNumber_Solution(int N) { - + diff --git a/docs/notes/剑指 Offer 题解 - 50~59.md b/docs/notes/剑指 Offer 题解 - 50~59.md index b2d22f18..45ef793e 100644 --- a/docs/notes/剑指 Offer 题解 - 50~59.md +++ b/docs/notes/剑指 Offer 题解 - 50~59.md @@ -481,4 +481,4 @@ public ArrayList maxInWindows(int[] num, int size) { - + diff --git a/docs/notes/剑指 Offer 题解 - 60~68.md b/docs/notes/剑指 Offer 题解 - 60~68.md index 21890df6..73e10f2e 100644 --- a/docs/notes/剑指 Offer 题解 - 60~68.md +++ b/docs/notes/剑指 Offer 题解 - 60~68.md @@ -324,4 +324,4 @@ public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) { - + diff --git a/docs/notes/剑指 Offer 题解 - 目录.md b/docs/notes/剑指 Offer 题解 - 目录.md index 8286517f..8fc29141 100644 --- a/docs/notes/剑指 Offer 题解 - 目录.md +++ b/docs/notes/剑指 Offer 题解 - 目录.md @@ -17,4 +17,4 @@ - + diff --git a/docs/notes/剑指 Offer 题解 - 目录1.md b/docs/notes/剑指 Offer 题解 - 目录1.md index f0f2f61b..78a50152 100644 --- a/docs/notes/剑指 Offer 题解 - 目录1.md +++ b/docs/notes/剑指 Offer 题解 - 目录1.md @@ -17,4 +17,4 @@ - + diff --git a/docs/notes/剑指 offer 题解.md b/docs/notes/剑指 offer 题解.md index a74fc605..1e3382c0 100644 --- a/docs/notes/剑指 offer 题解.md +++ b/docs/notes/剑指 offer 题解.md @@ -7,4 +7,4 @@ - + diff --git a/docs/notes/攻击技术.md b/docs/notes/攻击技术.md index 562934a4..24fb4be3 100644 --- a/docs/notes/攻击技术.md +++ b/docs/notes/攻击技术.md @@ -195,4 +195,4 @@ ResultSet rs = stmt.executeQuery(); - + diff --git a/docs/notes/数据库系统原理.md b/docs/notes/数据库系统原理.md index 4d94d6df..c828c7cd 100644 --- a/docs/notes/数据库系统原理.md +++ b/docs/notes/数据库系统原理.md @@ -576,4 +576,4 @@ Entity-Relationship,有三个组成部分:实体、属性、联系。 - + diff --git a/docs/notes/构建工具.md b/docs/notes/构建工具.md index d3d3f941..1c9dd7e4 100644 --- a/docs/notes/构建工具.md +++ b/docs/notes/构建工具.md @@ -143,4 +143,4 @@ A -> C -> X(2.0) - + diff --git a/docs/notes/正则表达式.md b/docs/notes/正则表达式.md index fb65a9d0..83d4fa40 100644 --- a/docs/notes/正则表达式.md +++ b/docs/notes/正则表达式.md @@ -390,4 +390,4 @@ aBCd - + diff --git a/docs/notes/消息队列.md b/docs/notes/消息队列.md index 78ec45ba..b3c3fff7 100644 --- a/docs/notes/消息队列.md +++ b/docs/notes/消息队列.md @@ -81,4 +81,4 @@ - + diff --git a/docs/notes/算法 - 其它.md b/docs/notes/算法 - 其它.md index e94a65d9..669e8c61 100644 --- a/docs/notes/算法 - 其它.md +++ b/docs/notes/算法 - 其它.md @@ -136,4 +136,4 @@ public class Huffman { - + diff --git a/docs/notes/算法 - 并查集.md b/docs/notes/算法 - 并查集.md index 828e71b0..6ed31071 100644 --- a/docs/notes/算法 - 并查集.md +++ b/docs/notes/算法 - 并查集.md @@ -194,4 +194,4 @@ public class WeightedQuickUnionUF extends UF { - + diff --git a/docs/notes/算法 - 排序.md b/docs/notes/算法 - 排序.md index 68f9bdcf..c4b1ef70 100644 --- a/docs/notes/算法 - 排序.md +++ b/docs/notes/算法 - 排序.md @@ -584,4 +584,4 @@ Java 主要排序方法为 java.util.Arrays.sort(),对于原始数据类型使 - + diff --git a/docs/notes/算法 - 栈和队列.md b/docs/notes/算法 - 栈和队列.md index 56b71126..70c519c4 100644 --- a/docs/notes/算法 - 栈和队列.md +++ b/docs/notes/算法 - 栈和队列.md @@ -320,4 +320,4 @@ public class ListQueue implements MyQueue { - + diff --git a/docs/notes/算法 - 目录.md b/docs/notes/算法 - 目录.md index 05702bc0..d76ed7ab 100644 --- a/docs/notes/算法 - 目录.md +++ b/docs/notes/算法 - 目录.md @@ -16,4 +16,4 @@ - + diff --git a/docs/notes/算法 - 目录1.md b/docs/notes/算法 - 目录1.md index 2c462634..118de6d5 100644 --- a/docs/notes/算法 - 目录1.md +++ b/docs/notes/算法 - 目录1.md @@ -16,4 +16,4 @@ - + diff --git a/docs/notes/算法 - 符号表.md b/docs/notes/算法 - 符号表.md index d2f2adeb..c8b99804 100644 --- a/docs/notes/算法 - 符号表.md +++ b/docs/notes/算法 - 符号表.md @@ -942,4 +942,4 @@ public class SparseVector { - + diff --git a/docs/notes/算法 - 算法分析.md b/docs/notes/算法 - 算法分析.md index 7e2d7ae7..a8df2822 100644 --- a/docs/notes/算法 - 算法分析.md +++ b/docs/notes/算法 - 算法分析.md @@ -238,4 +238,4 @@ public class StopWatch { - + diff --git a/docs/notes/算法.md b/docs/notes/算法.md index 48a76511..c905bec3 100644 --- a/docs/notes/算法.md +++ b/docs/notes/算法.md @@ -7,4 +7,4 @@ - + diff --git a/docs/notes/系统设计基础.md b/docs/notes/系统设计基础.md index 4e0f8e12..b667949c 100644 --- a/docs/notes/系统设计基础.md +++ b/docs/notes/系统设计基础.md @@ -111,4 +111,4 @@ - + diff --git a/docs/notes/缓存.md b/docs/notes/缓存.md index 1c9f6519..349216a8 100644 --- a/docs/notes/缓存.md +++ b/docs/notes/缓存.md @@ -310,4 +310,4 @@ Distributed Hash Table(DHT) 是一种哈希分布方式,其目的是为了 - + diff --git a/docs/notes/计算机操作系统 - 内存管理.md b/docs/notes/计算机操作系统 - 内存管理.md index d5eca874..3e613abe 100644 --- a/docs/notes/计算机操作系统 - 内存管理.md +++ b/docs/notes/计算机操作系统 - 内存管理.md @@ -142,4 +142,4 @@ FIFO 算法可能会把经常使用的页面置换出去,为了避免这一问 - + diff --git a/docs/notes/计算机操作系统 - 概述.md b/docs/notes/计算机操作系统 - 概述.md index 4813d72b..0be0b0c2 100644 --- a/docs/notes/计算机操作系统 - 概述.md +++ b/docs/notes/计算机操作系统 - 概述.md @@ -124,4 +124,4 @@ Linux 的系统调用主要有以下这些: - + diff --git a/docs/notes/计算机操作系统 - 死锁.md b/docs/notes/计算机操作系统 - 死锁.md index 5b05b51f..392bbede 100644 --- a/docs/notes/计算机操作系统 - 死锁.md +++ b/docs/notes/计算机操作系统 - 死锁.md @@ -144,4 +144,4 @@ - + diff --git a/docs/notes/计算机操作系统 - 目录.md b/docs/notes/计算机操作系统 - 目录.md index 2866fac7..924ee84e 100644 --- a/docs/notes/计算机操作系统 - 目录.md +++ b/docs/notes/计算机操作系统 - 目录.md @@ -24,4 +24,4 @@ - + diff --git a/docs/notes/计算机操作系统 - 目录1.md b/docs/notes/计算机操作系统 - 目录1.md index e0970da9..7e124b0a 100644 --- a/docs/notes/计算机操作系统 - 目录1.md +++ b/docs/notes/计算机操作系统 - 目录1.md @@ -24,4 +24,4 @@ - + diff --git a/docs/notes/计算机操作系统 - 设备管理.md b/docs/notes/计算机操作系统 - 设备管理.md index ddb2c0aa..d5b4fa59 100644 --- a/docs/notes/计算机操作系统 - 设备管理.md +++ b/docs/notes/计算机操作系统 - 设备管理.md @@ -61,4 +61,4 @@ - + diff --git a/docs/notes/计算机操作系统 - 进程管理.md b/docs/notes/计算机操作系统 - 进程管理.md index 46c40394..1a073988 100644 --- a/docs/notes/计算机操作系统 - 进程管理.md +++ b/docs/notes/计算机操作系统 - 进程管理.md @@ -590,4 +590,4 @@ FIFO 常用于客户-服务器应用程序中,FIFO 用作汇聚点,在客户 - + diff --git a/docs/notes/计算机操作系统 - 链接.md b/docs/notes/计算机操作系统 - 链接.md index ff7f9703..24075458 100644 --- a/docs/notes/计算机操作系统 - 链接.md +++ b/docs/notes/计算机操作系统 - 链接.md @@ -68,4 +68,4 @@ gcc -o hello hello.c - + diff --git a/docs/notes/计算机操作系统.md b/docs/notes/计算机操作系统.md index 533424bc..cace093e 100644 --- a/docs/notes/计算机操作系统.md +++ b/docs/notes/计算机操作系统.md @@ -7,4 +7,4 @@ - + diff --git a/docs/notes/计算机网络 - 传输层.md b/docs/notes/计算机网络 - 传输层.md index b8da29db..dc4558ae 100644 --- a/docs/notes/计算机网络 - 传输层.md +++ b/docs/notes/计算机网络 - 传输层.md @@ -167,4 +167,4 @@ TCP 主要通过四个算法来进行拥塞控制:慢开始、拥塞避免、 - + diff --git a/docs/notes/计算机网络 - 应用层.md b/docs/notes/计算机网络 - 应用层.md index 93d21d30..08f647eb 100644 --- a/docs/notes/计算机网络 - 应用层.md +++ b/docs/notes/计算机网络 - 应用层.md @@ -168,4 +168,4 @@ IMAP 协议中客户端和服务器上的邮件保持同步,如果不手动删 - + diff --git a/docs/notes/计算机网络 - 概述.md b/docs/notes/计算机网络 - 概述.md index 3e25067a..b5286330 100644 --- a/docs/notes/计算机网络 - 概述.md +++ b/docs/notes/计算机网络 - 概述.md @@ -134,4 +134,4 @@ TCP/IP 体系结构不严格遵循 OSI 分层概念,应用层可能会直接 - + diff --git a/docs/notes/计算机网络 - 物理层.md b/docs/notes/计算机网络 - 物理层.md index 247e6ce1..29620ae1 100644 --- a/docs/notes/计算机网络 - 物理层.md +++ b/docs/notes/计算机网络 - 物理层.md @@ -22,4 +22,4 @@ - + diff --git a/docs/notes/计算机网络 - 目录.md b/docs/notes/计算机网络 - 目录.md index 6d212fbc..f5f41ea3 100644 --- a/docs/notes/计算机网络 - 目录.md +++ b/docs/notes/计算机网络 - 目录.md @@ -30,4 +30,4 @@ - + diff --git a/docs/notes/计算机网络 - 目录1.md b/docs/notes/计算机网络 - 目录1.md index a67e3bf9..7db42895 100644 --- a/docs/notes/计算机网络 - 目录1.md +++ b/docs/notes/计算机网络 - 目录1.md @@ -31,4 +31,4 @@ - + diff --git a/docs/notes/计算机网络 - 网络层.md b/docs/notes/计算机网络 - 网络层.md index f8b74dc9..d770d885 100644 --- a/docs/notes/计算机网络 - 网络层.md +++ b/docs/notes/计算机网络 - 网络层.md @@ -244,4 +244,4 @@ BGP 只能寻找一条比较好的路由,而不是最佳路由。 - + diff --git a/docs/notes/计算机网络 - 链路层.md b/docs/notes/计算机网络 - 链路层.md index 9560d3f3..1aecaefe 100644 --- a/docs/notes/计算机网络 - 链路层.md +++ b/docs/notes/计算机网络 - 链路层.md @@ -198,4 +198,4 @@ MAC 地址是链路层地址,长度为 6 字节(48 位),用于唯一标 - + diff --git a/docs/notes/计算机网络.md b/docs/notes/计算机网络.md index 91becabf..a36f9f35 100644 --- a/docs/notes/计算机网络.md +++ b/docs/notes/计算机网络.md @@ -7,4 +7,4 @@ - + diff --git a/docs/notes/设计模式.md b/docs/notes/设计模式.md index e781102c..7e7e50af 100644 --- a/docs/notes/设计模式.md +++ b/docs/notes/设计模式.md @@ -3068,4 +3068,4 @@ public class ImageViewer { - + diff --git a/docs/notes/集群.md b/docs/notes/集群.md index dd62c56e..94667826 100644 --- a/docs/notes/集群.md +++ b/docs/notes/集群.md @@ -203,4 +203,4 @@ HTTP 重定向负载均衡服务器使用某种负载均衡算法计算得到服 - + diff --git a/docs/notes/面向对象思想.md b/docs/notes/面向对象思想.md index d6910f48..a1a96cc0 100644 --- a/docs/notes/面向对象思想.md +++ b/docs/notes/面向对象思想.md @@ -372,4 +372,4 @@ Vihicle .. N - + diff --git a/notes/Docker.md b/notes/Docker.md index 77ca4824..072d99f7 100644 --- a/notes/Docker.md +++ b/notes/Docker.md @@ -91,4 +91,4 @@ Docker 轻量级的特点使得它很适合用于部署、维护、组合微服 - + diff --git a/notes/Git.md b/notes/Git.md index 21781af7..fce8916e 100644 --- a/notes/Git.md +++ b/notes/Git.md @@ -162,4 +162,4 @@ $ ssh-keygen -t rsa -C "youremail@example.com" - + diff --git a/notes/HTTP.md b/notes/HTTP.md index 933a14c1..cc3b9941 100644 --- a/notes/HTTP.md +++ b/notes/HTTP.md @@ -881,4 +881,4 @@ DELETE /idX/delete HTTP/1.1 -> Returns 404 - + diff --git a/notes/Java IO.md b/notes/Java IO.md index 065f227b..54e132a3 100644 --- a/notes/Java IO.md +++ b/notes/Java IO.md @@ -622,4 +622,4 @@ NIO 与普通 I/O 的区别主要有以下两点: - + diff --git a/notes/Java 基础.md b/notes/Java 基础.md index 00814c83..651b128a 100644 --- a/notes/Java 基础.md +++ b/notes/Java 基础.md @@ -1435,4 +1435,4 @@ Java 注解是附加在代码中的一些元信息,用于一些工具在编译 - + diff --git a/notes/Java 容器.md b/notes/Java 容器.md index 329aa8f1..75eee7d3 100644 --- a/notes/Java 容器.md +++ b/notes/Java 容器.md @@ -1113,4 +1113,4 @@ public final class ConcurrentCache { - + diff --git a/notes/Java 并发.md b/notes/Java 并发.md index f00e8dcd..dbd2ff7b 100644 --- a/notes/Java 并发.md +++ b/notes/Java 并发.md @@ -1638,4 +1638,4 @@ JDK 1.6 引入了偏向锁和轻量级锁,从而让锁拥有了四个状态: - + diff --git a/notes/Java 虚拟机.md b/notes/Java 虚拟机.md index 09a8c385..7822b17c 100644 --- a/notes/Java 虚拟机.md +++ b/notes/Java 虚拟机.md @@ -760,4 +760,4 @@ public class FileSystemClassLoader extends ClassLoader { - + diff --git a/notes/Leetcode 题解 - 二分查找.md b/notes/Leetcode 题解 - 二分查找.md index 41872b64..956ab853 100644 --- a/notes/Leetcode 题解 - 二分查找.md +++ b/notes/Leetcode 题解 - 二分查找.md @@ -293,4 +293,4 @@ private int binarySearch(int[] nums, int target) { - + diff --git a/notes/Leetcode 题解 - 位运算.md b/notes/Leetcode 题解 - 位运算.md index 71dca318..d84d242a 100644 --- a/notes/Leetcode 题解 - 位运算.md +++ b/notes/Leetcode 题解 - 位运算.md @@ -420,4 +420,4 @@ public int[] countBits(int num) { - + diff --git a/notes/Leetcode 题解 - 分治.md b/notes/Leetcode 题解 - 分治.md index 3b947f0b..71cd4791 100644 --- a/notes/Leetcode 题解 - 分治.md +++ b/notes/Leetcode 题解 - 分治.md @@ -108,4 +108,4 @@ private List generateSubtrees(int s, int e) { - + diff --git a/notes/Leetcode 题解 - 动态规划.md b/notes/Leetcode 题解 - 动态规划.md index dcec33d7..c9719691 100644 --- a/notes/Leetcode 题解 - 动态规划.md +++ b/notes/Leetcode 题解 - 动态规划.md @@ -1246,4 +1246,4 @@ public int minSteps(int n) { - + diff --git a/notes/Leetcode 题解 - 双指针.md b/notes/Leetcode 题解 - 双指针.md index 630a5238..efe90a11 100644 --- a/notes/Leetcode 题解 - 双指针.md +++ b/notes/Leetcode 题解 - 双指针.md @@ -242,4 +242,4 @@ private boolean isSubstr(String s, String target) { - + diff --git a/notes/Leetcode 题解 - 哈希表.md b/notes/Leetcode 题解 - 哈希表.md index 6549a7dd..5fa392a8 100644 --- a/notes/Leetcode 题解 - 哈希表.md +++ b/notes/Leetcode 题解 - 哈希表.md @@ -125,4 +125,4 @@ private int maxCount(Map countForNum) { - + diff --git a/notes/Leetcode 题解 - 图.md b/notes/Leetcode 题解 - 图.md index 53318b12..d0c11504 100644 --- a/notes/Leetcode 题解 - 图.md +++ b/notes/Leetcode 题解 - 图.md @@ -259,4 +259,4 @@ private class UF { - + diff --git a/notes/Leetcode 题解 - 字符串.md b/notes/Leetcode 题解 - 字符串.md index b0280560..29546d42 100644 --- a/notes/Leetcode 题解 - 字符串.md +++ b/notes/Leetcode 题解 - 字符串.md @@ -227,4 +227,4 @@ public int countBinarySubstrings(String s) { - + diff --git a/notes/Leetcode 题解 - 排序.md b/notes/Leetcode 题解 - 排序.md index c2b0cbbc..6c625c4f 100644 --- a/notes/Leetcode 题解 - 排序.md +++ b/notes/Leetcode 题解 - 排序.md @@ -232,4 +232,4 @@ private void swap(int[] nums, int i, int j) { - + diff --git a/notes/Leetcode 题解 - 搜索.md b/notes/Leetcode 题解 - 搜索.md index 56f22de9..65964d2e 100644 --- a/notes/Leetcode 题解 - 搜索.md +++ b/notes/Leetcode 题解 - 搜索.md @@ -1271,4 +1271,4 @@ private void backtracking(int row) { - + diff --git a/notes/Leetcode 题解 - 数学.md b/notes/Leetcode 题解 - 数学.md index 73daa663..70fd61bf 100644 --- a/notes/Leetcode 题解 - 数学.md +++ b/notes/Leetcode 题解 - 数学.md @@ -509,4 +509,4 @@ public int maximumProduct(int[] nums) { - + diff --git a/notes/Leetcode 题解 - 数组与矩阵.md b/notes/Leetcode 题解 - 数组与矩阵.md index b1c621f9..b0b94010 100644 --- a/notes/Leetcode 题解 - 数组与矩阵.md +++ b/notes/Leetcode 题解 - 数组与矩阵.md @@ -435,4 +435,4 @@ public int maxChunksToSorted(int[] arr) { - + diff --git a/notes/Leetcode 题解 - 栈和队列.md b/notes/Leetcode 题解 - 栈和队列.md index d260ece7..7f354a44 100644 --- a/notes/Leetcode 题解 - 栈和队列.md +++ b/notes/Leetcode 题解 - 栈和队列.md @@ -222,4 +222,4 @@ public int[] nextGreaterElements(int[] nums) { - + diff --git a/notes/Leetcode 题解 - 树.md b/notes/Leetcode 题解 - 树.md index b965085d..727ef9ef 100644 --- a/notes/Leetcode 题解 - 树.md +++ b/notes/Leetcode 题解 - 树.md @@ -1122,4 +1122,4 @@ class MapSum { - + diff --git a/notes/Leetcode 题解 - 目录.md b/notes/Leetcode 题解 - 目录.md index e0abe8ae..aee75e3a 100644 --- a/notes/Leetcode 题解 - 目录.md +++ b/notes/Leetcode 题解 - 目录.md @@ -37,4 +37,4 @@ - + diff --git a/notes/Leetcode 题解 - 目录1.md b/notes/Leetcode 题解 - 目录1.md index e175241a..db521b52 100644 --- a/notes/Leetcode 题解 - 目录1.md +++ b/notes/Leetcode 题解 - 目录1.md @@ -37,4 +37,4 @@ - + diff --git a/notes/Leetcode 题解 - 贪心思想.md b/notes/Leetcode 题解 - 贪心思想.md index 4dadad4a..dc194537 100644 --- a/notes/Leetcode 题解 - 贪心思想.md +++ b/notes/Leetcode 题解 - 贪心思想.md @@ -370,4 +370,4 @@ private int char2Index(char c) { - + diff --git a/notes/Leetcode 题解 - 链表.md b/notes/Leetcode 题解 - 链表.md index c194ca4d..56d6dcf9 100644 --- a/notes/Leetcode 题解 - 链表.md +++ b/notes/Leetcode 题解 - 链表.md @@ -345,4 +345,4 @@ public ListNode oddEvenList(ListNode head) { - + diff --git a/notes/Leetcode 题解.md b/notes/Leetcode 题解.md index bfb93950..dc20c006 100644 --- a/notes/Leetcode 题解.md +++ b/notes/Leetcode 题解.md @@ -7,4 +7,4 @@ - + diff --git a/notes/Leetcode-Database 题解.md b/notes/Leetcode-Database 题解.md index 8b83690e..8a017576 100644 --- a/notes/Leetcode-Database 题解.md +++ b/notes/Leetcode-Database 题解.md @@ -1007,4 +1007,4 @@ ORDER BY - + diff --git a/notes/Linux.md b/notes/Linux.md index 6134bcee..57b1d3a0 100644 --- a/notes/Linux.md +++ b/notes/Linux.md @@ -1247,4 +1247,4 @@ options 参数主要有 WNOHANG 和 WUNTRACED 两个选项,WNOHANG 可以使 w - + diff --git a/notes/MySQL.md b/notes/MySQL.md index 3e6197c6..5f95123f 100644 --- a/notes/MySQL.md +++ b/notes/MySQL.md @@ -425,4 +425,4 @@ MySQL 提供了 FROM_UNIXTIME() 函数把 UNIX 时间戳转换为日期,并提 - + diff --git a/notes/Redis.md b/notes/Redis.md index 656c943a..ca7066e3 100644 --- a/notes/Redis.md +++ b/notes/Redis.md @@ -610,4 +610,4 @@ Redis 没有关系型数据库中的表这一概念来将同种类型的数据 - + diff --git a/notes/SQL.md b/notes/SQL.md index 03297441..93aac8bd 100644 --- a/notes/SQL.md +++ b/notes/SQL.md @@ -773,4 +773,4 @@ SET PASSWROD FOR myuser = Password('new_password'); - + diff --git a/notes/Socket.md b/notes/Socket.md index c6e9b055..20defc1b 100644 --- a/notes/Socket.md +++ b/notes/Socket.md @@ -325,4 +325,4 @@ poll 没有最大描述符数量的限制,如果平台支持并且对实时性 - + diff --git a/notes/代码可读性.md b/notes/代码可读性.md index 0ed55a6b..353358d2 100644 --- a/notes/代码可读性.md +++ b/notes/代码可读性.md @@ -335,4 +335,4 @@ public int findClostElement(int[] arr) { - + diff --git a/notes/代码风格规范.md b/notes/代码风格规范.md index 05c7aa21..8c0eaa99 100644 --- a/notes/代码风格规范.md +++ b/notes/代码风格规范.md @@ -9,4 +9,4 @@ - + diff --git a/notes/分布式.md b/notes/分布式.md index 9ec8ded8..6c5218f1 100644 --- a/notes/分布式.md +++ b/notes/分布式.md @@ -344,4 +344,4 @@ Raft 也是分布式一致性协议,主要是用来竞选主节点。 - + diff --git a/notes/剑指 Offer 题解 - 10~19.md b/notes/剑指 Offer 题解 - 10~19.md index f1bb1b78..8ca53477 100644 --- a/notes/剑指 Offer 题解 - 10~19.md +++ b/notes/剑指 Offer 题解 - 10~19.md @@ -694,4 +694,4 @@ public boolean match(char[] str, char[] pattern) { - + diff --git a/notes/剑指 Offer 题解 - 20~29.md b/notes/剑指 Offer 题解 - 20~29.md index 86c1d5ad..2eaaa8c8 100644 --- a/notes/剑指 Offer 题解 - 20~29.md +++ b/notes/剑指 Offer 题解 - 20~29.md @@ -392,4 +392,4 @@ public ArrayList printMatrix(int[][] matrix) { - + diff --git a/notes/剑指 Offer 题解 - 30~39.md b/notes/剑指 Offer 题解 - 30~39.md index 65490e24..ac200270 100644 --- a/notes/剑指 Offer 题解 - 30~39.md +++ b/notes/剑指 Offer 题解 - 30~39.md @@ -472,4 +472,4 @@ public int MoreThanHalfNum_Solution(int[] nums) { - + diff --git a/notes/剑指 Offer 题解 - 3~9.md b/notes/剑指 Offer 题解 - 3~9.md index 212b8017..696d5d4a 100644 --- a/notes/剑指 Offer 题解 - 3~9.md +++ b/notes/剑指 Offer 题解 - 3~9.md @@ -363,4 +363,4 @@ public int pop() throws Exception { - + diff --git a/notes/剑指 Offer 题解 - 40~49.md b/notes/剑指 Offer 题解 - 40~49.md index cfe904d4..c45352e0 100644 --- a/notes/剑指 Offer 题解 - 40~49.md +++ b/notes/剑指 Offer 题解 - 40~49.md @@ -420,4 +420,4 @@ public int GetUglyNumber_Solution(int N) { - + diff --git a/notes/剑指 Offer 题解 - 50~59.md b/notes/剑指 Offer 题解 - 50~59.md index aca737c6..510c178a 100644 --- a/notes/剑指 Offer 题解 - 50~59.md +++ b/notes/剑指 Offer 题解 - 50~59.md @@ -481,4 +481,4 @@ public ArrayList maxInWindows(int[] num, int size) { - + diff --git a/notes/剑指 Offer 题解 - 60~68.md b/notes/剑指 Offer 题解 - 60~68.md index 7c118273..d229f51a 100644 --- a/notes/剑指 Offer 题解 - 60~68.md +++ b/notes/剑指 Offer 题解 - 60~68.md @@ -324,4 +324,4 @@ public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) { - + diff --git a/notes/剑指 Offer 题解 - 目录.md b/notes/剑指 Offer 题解 - 目录.md index 8286517f..8fc29141 100644 --- a/notes/剑指 Offer 题解 - 目录.md +++ b/notes/剑指 Offer 题解 - 目录.md @@ -17,4 +17,4 @@ - + diff --git a/notes/剑指 Offer 题解 - 目录1.md b/notes/剑指 Offer 题解 - 目录1.md index f0f2f61b..78a50152 100644 --- a/notes/剑指 Offer 题解 - 目录1.md +++ b/notes/剑指 Offer 题解 - 目录1.md @@ -17,4 +17,4 @@ - + diff --git a/notes/剑指 offer 题解.md b/notes/剑指 offer 题解.md index a74fc605..1e3382c0 100644 --- a/notes/剑指 offer 题解.md +++ b/notes/剑指 offer 题解.md @@ -7,4 +7,4 @@ - + diff --git a/notes/攻击技术.md b/notes/攻击技术.md index 562934a4..24fb4be3 100644 --- a/notes/攻击技术.md +++ b/notes/攻击技术.md @@ -195,4 +195,4 @@ ResultSet rs = stmt.executeQuery(); - + diff --git a/notes/数据库系统原理.md b/notes/数据库系统原理.md index 09ba0513..aba5047a 100644 --- a/notes/数据库系统原理.md +++ b/notes/数据库系统原理.md @@ -576,4 +576,4 @@ Entity-Relationship,有三个组成部分:实体、属性、联系。 - + diff --git a/notes/构建工具.md b/notes/构建工具.md index 588755c1..b0faf6fe 100644 --- a/notes/构建工具.md +++ b/notes/构建工具.md @@ -143,4 +143,4 @@ A -> C -> X(2.0) - + diff --git a/notes/正则表达式.md b/notes/正则表达式.md index e39a0877..0a871f02 100644 --- a/notes/正则表达式.md +++ b/notes/正则表达式.md @@ -390,4 +390,4 @@ aBCd - + diff --git a/notes/消息队列.md b/notes/消息队列.md index 5e4cc398..d30eb557 100644 --- a/notes/消息队列.md +++ b/notes/消息队列.md @@ -81,4 +81,4 @@ - + diff --git a/notes/算法 - 其它.md b/notes/算法 - 其它.md index e6c62593..796d7a04 100644 --- a/notes/算法 - 其它.md +++ b/notes/算法 - 其它.md @@ -136,4 +136,4 @@ public class Huffman { - + diff --git a/notes/算法 - 并查集.md b/notes/算法 - 并查集.md index b27a7ccc..f8f28548 100644 --- a/notes/算法 - 并查集.md +++ b/notes/算法 - 并查集.md @@ -194,4 +194,4 @@ public class WeightedQuickUnionUF extends UF { - + diff --git a/notes/算法 - 排序.md b/notes/算法 - 排序.md index 2e431443..389abcdf 100644 --- a/notes/算法 - 排序.md +++ b/notes/算法 - 排序.md @@ -584,4 +584,4 @@ Java 主要排序方法为 java.util.Arrays.sort(),对于原始数据类型使 - + diff --git a/notes/算法 - 栈和队列.md b/notes/算法 - 栈和队列.md index 56b71126..70c519c4 100644 --- a/notes/算法 - 栈和队列.md +++ b/notes/算法 - 栈和队列.md @@ -320,4 +320,4 @@ public class ListQueue implements MyQueue { - + diff --git a/notes/算法 - 目录.md b/notes/算法 - 目录.md index 05702bc0..d76ed7ab 100644 --- a/notes/算法 - 目录.md +++ b/notes/算法 - 目录.md @@ -16,4 +16,4 @@ - + diff --git a/notes/算法 - 目录1.md b/notes/算法 - 目录1.md index 2c462634..118de6d5 100644 --- a/notes/算法 - 目录1.md +++ b/notes/算法 - 目录1.md @@ -16,4 +16,4 @@ - + diff --git a/notes/算法 - 符号表.md b/notes/算法 - 符号表.md index 196e106a..5524e3dd 100644 --- a/notes/算法 - 符号表.md +++ b/notes/算法 - 符号表.md @@ -942,4 +942,4 @@ public class SparseVector { - + diff --git a/notes/算法 - 算法分析.md b/notes/算法 - 算法分析.md index 7e2d7ae7..a8df2822 100644 --- a/notes/算法 - 算法分析.md +++ b/notes/算法 - 算法分析.md @@ -238,4 +238,4 @@ public class StopWatch { - + diff --git a/notes/算法.md b/notes/算法.md index 48a76511..c905bec3 100644 --- a/notes/算法.md +++ b/notes/算法.md @@ -7,4 +7,4 @@ - + diff --git a/notes/系统设计基础.md b/notes/系统设计基础.md index 4e0f8e12..b667949c 100644 --- a/notes/系统设计基础.md +++ b/notes/系统设计基础.md @@ -111,4 +111,4 @@ - + diff --git a/notes/缓存.md b/notes/缓存.md index 6c2afa9c..326ada18 100644 --- a/notes/缓存.md +++ b/notes/缓存.md @@ -310,4 +310,4 @@ Distributed Hash Table(DHT) 是一种哈希分布方式,其目的是为了 - + diff --git a/notes/计算机操作系统 - 内存管理.md b/notes/计算机操作系统 - 内存管理.md index f90acccf..ea6dccd6 100644 --- a/notes/计算机操作系统 - 内存管理.md +++ b/notes/计算机操作系统 - 内存管理.md @@ -142,4 +142,4 @@ FIFO 算法可能会把经常使用的页面置换出去,为了避免这一问 - + diff --git a/notes/计算机操作系统 - 概述.md b/notes/计算机操作系统 - 概述.md index dec63667..27755bdf 100644 --- a/notes/计算机操作系统 - 概述.md +++ b/notes/计算机操作系统 - 概述.md @@ -124,4 +124,4 @@ Linux 的系统调用主要有以下这些: - + diff --git a/notes/计算机操作系统 - 死锁.md b/notes/计算机操作系统 - 死锁.md index 430deae4..bdc401d9 100644 --- a/notes/计算机操作系统 - 死锁.md +++ b/notes/计算机操作系统 - 死锁.md @@ -144,4 +144,4 @@ - + diff --git a/notes/计算机操作系统 - 目录.md b/notes/计算机操作系统 - 目录.md index 2866fac7..924ee84e 100644 --- a/notes/计算机操作系统 - 目录.md +++ b/notes/计算机操作系统 - 目录.md @@ -24,4 +24,4 @@ - + diff --git a/notes/计算机操作系统 - 目录1.md b/notes/计算机操作系统 - 目录1.md index e0970da9..7e124b0a 100644 --- a/notes/计算机操作系统 - 目录1.md +++ b/notes/计算机操作系统 - 目录1.md @@ -24,4 +24,4 @@ - + diff --git a/notes/计算机操作系统 - 设备管理.md b/notes/计算机操作系统 - 设备管理.md index d96ec338..14a3f6ed 100644 --- a/notes/计算机操作系统 - 设备管理.md +++ b/notes/计算机操作系统 - 设备管理.md @@ -61,4 +61,4 @@ - + diff --git a/notes/计算机操作系统 - 进程管理.md b/notes/计算机操作系统 - 进程管理.md index b40a1194..5ba5f02c 100644 --- a/notes/计算机操作系统 - 进程管理.md +++ b/notes/计算机操作系统 - 进程管理.md @@ -590,4 +590,4 @@ FIFO 常用于客户-服务器应用程序中,FIFO 用作汇聚点,在客户 - + diff --git a/notes/计算机操作系统 - 链接.md b/notes/计算机操作系统 - 链接.md index 1f1315a7..e0387f89 100644 --- a/notes/计算机操作系统 - 链接.md +++ b/notes/计算机操作系统 - 链接.md @@ -68,4 +68,4 @@ gcc -o hello hello.c - + diff --git a/notes/计算机操作系统.md b/notes/计算机操作系统.md index 533424bc..cace093e 100644 --- a/notes/计算机操作系统.md +++ b/notes/计算机操作系统.md @@ -7,4 +7,4 @@ - + diff --git a/notes/计算机网络 - 传输层.md b/notes/计算机网络 - 传输层.md index 57547a7e..1633d732 100644 --- a/notes/计算机网络 - 传输层.md +++ b/notes/计算机网络 - 传输层.md @@ -167,4 +167,4 @@ TCP 主要通过四个算法来进行拥塞控制:慢开始、拥塞避免、 - + diff --git a/notes/计算机网络 - 应用层.md b/notes/计算机网络 - 应用层.md index e8b3bbc8..1567622d 100644 --- a/notes/计算机网络 - 应用层.md +++ b/notes/计算机网络 - 应用层.md @@ -168,4 +168,4 @@ IMAP 协议中客户端和服务器上的邮件保持同步,如果不手动删 - + diff --git a/notes/计算机网络 - 概述.md b/notes/计算机网络 - 概述.md index 202865cd..b689ca25 100644 --- a/notes/计算机网络 - 概述.md +++ b/notes/计算机网络 - 概述.md @@ -134,4 +134,4 @@ TCP/IP 体系结构不严格遵循 OSI 分层概念,应用层可能会直接 - + diff --git a/notes/计算机网络 - 物理层.md b/notes/计算机网络 - 物理层.md index c53837a0..af036a1d 100644 --- a/notes/计算机网络 - 物理层.md +++ b/notes/计算机网络 - 物理层.md @@ -22,4 +22,4 @@ - + diff --git a/notes/计算机网络 - 目录.md b/notes/计算机网络 - 目录.md index 6d212fbc..f5f41ea3 100644 --- a/notes/计算机网络 - 目录.md +++ b/notes/计算机网络 - 目录.md @@ -30,4 +30,4 @@ - + diff --git a/notes/计算机网络 - 目录1.md b/notes/计算机网络 - 目录1.md index a67e3bf9..7db42895 100644 --- a/notes/计算机网络 - 目录1.md +++ b/notes/计算机网络 - 目录1.md @@ -31,4 +31,4 @@ - + diff --git a/notes/计算机网络 - 网络层.md b/notes/计算机网络 - 网络层.md index b4ae4a21..90d6858a 100644 --- a/notes/计算机网络 - 网络层.md +++ b/notes/计算机网络 - 网络层.md @@ -244,4 +244,4 @@ BGP 只能寻找一条比较好的路由,而不是最佳路由。 - + diff --git a/notes/计算机网络 - 链路层.md b/notes/计算机网络 - 链路层.md index 57bbf522..a543d25b 100644 --- a/notes/计算机网络 - 链路层.md +++ b/notes/计算机网络 - 链路层.md @@ -198,4 +198,4 @@ MAC 地址是链路层地址,长度为 6 字节(48 位),用于唯一标 - + diff --git a/notes/计算机网络.md b/notes/计算机网络.md index 91becabf..a36f9f35 100644 --- a/notes/计算机网络.md +++ b/notes/计算机网络.md @@ -7,4 +7,4 @@ - + diff --git a/notes/设计模式.md b/notes/设计模式.md index cddc1d34..ff000d83 100644 --- a/notes/设计模式.md +++ b/notes/设计模式.md @@ -3068,4 +3068,4 @@ public class ImageViewer { - + diff --git a/notes/集群.md b/notes/集群.md index e1f457a4..33323e3b 100644 --- a/notes/集群.md +++ b/notes/集群.md @@ -203,4 +203,4 @@ HTTP 重定向负载均衡服务器使用某种负载均衡算法计算得到服 - + diff --git a/notes/面向对象思想.md b/notes/面向对象思想.md index 19ec6e8b..1ad75c24 100644 --- a/notes/面向对象思想.md +++ b/notes/面向对象思想.md @@ -372,4 +372,4 @@ Vihicle .. N - +