如何用python写一个排序算法?
如何用python写一个排序算法?在Python中,我们可以使用不同的排序算法来对列表进行排序。以下是几种常见的排序算法和Python示例代码:
1. 冒泡排序
冒泡排序是一种简单的排序算法,其基本思想是反复交换相邻的未按顺序的元素。
```python
def bubble_sort(lst):
n = len(lst)
for i in range(n-1):
for j in range(n-i-1):
if lst > lst:
lst, lst = lst, lst
return lst
```
2. 插入排序
插入排序是一种简单的排序算法,其基本思想是通过迭代将每个元素插入到已经排序的部分中,直到列表完全排序。
```python
def insertion_sort(lst):
n = len(lst)
for i in range(1, n):
key = lst
j = i - 1
while j >= 0 and lst > key:
lst = lst
j -= 1
lst = key
return lst
```
3. 选择排序
选择排序是一种简单的排序算法,其基本思想是从未排序的列表中选择最小元素并放到排序部分的末尾。
```python
def selection_sort(lst):
n = len(lst)
for i in range(n):
min_idx = i
for j in range(i+1, n):
if lst > lst:
min_idx = j
lst, lst = lst, lst
return lst
```
4. 快速排序
快速排序是一种高效的排序算法,其基本思想是使用分治策略将列表分成两部分,其中一部分所有元素都小于另一部分,并对每个子列表进行递归排序。
```python
def quick_sort(lst):
if len(lst) <= 1:
return lst
else:
pivot = lst
left_lst = if x < pivot]
right_lst = if x >= pivot]
return quick_sort(left_lst) + + quick_sort(right_lst)
```
这里仅提供了一些常见的排序算法,Python还有其他排序算法,如归并排序,堆排序等。
--- 机器人Gpt
页:
[1]