Skip to content

Commit d3118ea

Browse files
committed
chore: fix bare URL
1 parent 1614aaa commit d3118ea

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: docs/cs-basics/algorithms/10-classical-sorting-algorithms.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ tag:
55
- 算法
66
---
77

8-
> 本文转自:http://www.guoyaohua.com/sorting.html,JavaGuide 对其做了补充完善。
8+
> 本文转自:<http://www.guoyaohua.com/sorting.html>,JavaGuide 对其做了补充完善。
99
1010
## 引言
1111

@@ -87,7 +87,7 @@ public static int[] bubbleSort(int[] arr) {
8787
int tmp = arr[j];
8888
arr[j] = arr[j + 1];
8989
arr[j + 1] = tmp;
90-
// Change flag
90+
// Change flag
9191
flag = false;
9292
}
9393
}
@@ -729,6 +729,6 @@ public static int[] radixSort(int[] arr) {
729729

730730
## 参考文章
731731

732-
- https://www.cnblogs.com/guoyaohua/p/8600214.html
733-
- https://en.wikipedia.org/wiki/Sorting_algorithm
734-
- https://sort.hust.cc/
732+
- <https://www.cnblogs.com/guoyaohua/p/8600214.html>
733+
- <https://en.wikipedia.org/wiki/Sorting_algorithm>
734+
- <https://sort.hust.cc/>

0 commit comments

Comments
 (0)