Skip to content

Commit

Permalink
auto commit
Browse files Browse the repository at this point in the history
  • Loading branch information
CyC2018 committed May 26, 2020
1 parent a6d9edc commit d8fb90e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ private boolean isEven(int x) {
}
```

方法二使用冒泡思想每次都当前偶数上浮到当前最右边时间复杂度 O(N<sup>2</sup>),空间复杂度 O(1),时间换空间
方法二使用冒泡思想每次都将当前偶数上浮到当前最右边时间复杂度 O(N<sup>2</sup>),空间复杂度 O(1),时间换空间

```java
public void reOrderArray(int[] nums) {
Expand Down
2 changes: 1 addition & 1 deletion docs/notes/Linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ IDE(ATA)全称 Advanced Technology Attachment,接口速度最大为 133MB/

### 2. SATA

SATA 全称 Serial ATA也就是使用串口的 ATA 接口抗干扰性强且对数据线的长度要求比 ATA 低很多支持热插拔等功能SATA-II 的接口速度为 300MiB/s SATA-III 标准可达到 600MiB/s 的传输速度SATA 的数据线也比 ATA 的细得多有利于机箱内的空气流通整理线材也比较方便
SATA 全称 Serial ATA也就是使用串口的 ATA 接口抗干扰性强且对数据线的长度要求比 ATA 低很多支持热插拔等功能SATA-II 的接口速度为 300MB/s SATA-III 标准可达到 600MB/s 的传输速度SATA 的数据线也比 ATA 的细得多有利于机箱内的空气流通整理线材也比较方便

<div align="center"> <img src="https://cs-notes-1256109796.cos.ap-guangzhou.myqcloud.com/f9f2a16b-4843-44d1-9759-c745772e9bcf.jpg" width=""/> </div><br>

Expand Down
2 changes: 1 addition & 1 deletion docs/notes/计算机操作系统 - 内存管理.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ NRU 优先换出已经被修改的脏页面(R=0,M=1),而不是被频繁

选择换出的页面是最先进入的页面

该算法会将那些经常被访问的页面也被换出从而使缺页率升高
该算法会将那些经常被访问的页面换出导致缺页率升高

## 5. 第二次机会算法

Expand Down
4 changes: 2 additions & 2 deletions docs/notes/面向对象思想.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ Vihicle .. N
## S.O.L.I.D

| 简写 | 全拼 | 中文翻译 |
| :--: | :--: | :--: |
| :---: | :---: | :---: |
| SRP | The Single Responsibility Principle | 单一责任原则 |
| OCP | The Open Closed Principle | 开放封闭原则 |
| LSP | The Liskov Substitution Principle | 里氏替换原则 |
Expand Down Expand Up @@ -333,7 +333,7 @@ Vihicle .. N
除了上述的经典原则在实际开发中还有下面这些常见的设计原则

| 简写 | 全拼 | 中文翻译 |
| :--: | :--: | :--: |
| :---: | :---: | :---: |
|LOD| The Law of Demeter | 迪米特法则 |
|CRP| The Composite Reuse Principle | 合成复用原则 |
|CCP| The Common Closure Principle | 共同封闭原则 |
Expand Down
2 changes: 1 addition & 1 deletion notes/计算机操作系统 - 内存管理.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ NRU 优先换出已经被修改的脏页面(R=0,M=1),而不是被频繁

选择换出的页面是最先进入的页面

该算法也会将那些经常被访问的页面换出导致缺页率升高
该算法会将那些经常被访问的页面换出导致缺页率升高

## 5. 第二次机会算法

Expand Down
4 changes: 2 additions & 2 deletions notes/面向对象思想.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ Vihicle .. N
## S.O.L.I.D

| 简写 | 全拼 | 中文翻译 |
| :--: | :--: | :--: |
| :---: | :---: | :---: |
| SRP | The Single Responsibility Principle | 单一责任原则 |
| OCP | The Open Closed Principle | 开放封闭原则 |
| LSP | The Liskov Substitution Principle | 里氏替换原则 |
Expand Down Expand Up @@ -333,7 +333,7 @@ Vihicle .. N
除了上述的经典原则在实际开发中还有下面这些常见的设计原则

| 简写 | 全拼 | 中文翻译 |
| :--: | :--: | :--: |
| :---: | :---: | :---: |
|LOD| The Law of Demeter | 迪米特法则 |
|CRP| The Composite Reuse Principle | 合成复用原则 |
|CCP| The Common Closure Principle | 共同封闭原则 |
Expand Down

0 comments on commit d8fb90e

Please sign in to comment.