写出Python冒泡排序代码
时间: 2023-11-19 20:56:38 浏览: 88
python冒泡排序算法的实现代码
5星 · 资源好评率100%
当然,我可以帮你写出Python冒泡排序代码。
```
def bubbleSort(array):
n = len(array)
# Traverse through all array elements
for i in range(n):
# Last i elements are already in place
for j in range(0, n-i-1):
# Swap if the element found is greater
# than the next element
if array[j] > array[j+1] :
array[j], array[j+1] = array[j+1], array[j]
return array
```
这是一个基本的冒泡排序实现,输入一个数组参数,返回排序后的数组。如果需要进一步解释这段代码,欢迎随时询问。
阅读全文