Skip to content

Commit 054ff9e

Browse files
authored
Merge pull request #889 from fulinli/master
Minor revision
2 parents 91b19d9 + 5a991f3 commit 054ff9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notes/21. 调整数组顺序使奇数位于偶数前面.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ private boolean isEven(int x) {
3434
}
3535
```
3636

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

3939
```java
4040
public void reOrderArray(int[] nums) {

0 commit comments

Comments
 (0)