1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

chore: fix bare URL

This commit is contained in:
Mr.Hope 2023-05-05 12:34:51 +08:00
parent 1614aaa47f
commit d3118ea18c

View File

@ -5,7 +5,7 @@ tag:
- 算法
---
> 本文转自http://www.guoyaohua.com/sorting.htmlJavaGuide 对其做了补充完善。
> 本文转自:<http://www.guoyaohua.com/sorting.html>JavaGuide 对其做了补充完善。
## 引言
@ -87,7 +87,7 @@ public static int[] bubbleSort(int[] arr) {
int tmp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = tmp;
// Change flag
// Change flag
flag = false;
}
}
@ -729,6 +729,6 @@ public static int[] radixSort(int[] arr) {
## 参考文章
- https://www.cnblogs.com/guoyaohua/p/8600214.html
- https://en.wikipedia.org/wiki/Sorting_algorithm
- https://sort.hust.cc/
- <https://www.cnblogs.com/guoyaohua/p/8600214.html>
- <https://en.wikipedia.org/wiki/Sorting_algorithm>
- <https://sort.hust.cc/>