Hexo Fluid 文章

测试发布文章

这是一篇测试发布文章。

1
2
3
4
5
6
7
8
9
10
11
12
def quick_sort(arr):
if len(arr) <= 1:
return arr
pivot = arr[0]
left = []
right = []
for i in range(1, len(arr)):
if arr[i] < pivot:
left.append(arr[i])
else:
right.append(arr[i])
return quick_sort(left) + [pivot] + quick_sort(right)

Hexo Fluid 文章
https://jhyjhy.cn/posts/34482/
作者
jhy
发布于
2024年8月4日
许可协议