Skip to content

Instantly share code, notes, and snippets.

@YK-Unit
Created September 8, 2023 23:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YK-Unit/8c585dd1d2edc80684f2dbeea9365b3a to your computer and use it in GitHub Desktop.
Save YK-Unit/8c585dd1d2edc80684f2dbeea9365b3a to your computer and use it in GitHub Desktop.
代码的简介
这是一个基本的冒泡排序算法的 Python 实现:
def bubble_sort(arr):
n = len(arr)
# 遍历所有数组元素
for i in range(n)
for j in range(0, n-i-1)
if arr[j] > arr[j+1]
arr[j], arr[j+1] = arr[j+1], arr[j]
return arr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment