来,一起用python来实现排序算法

2018-12-17  本文已影响0人  real3721

1.1 内容概要

2.1 快速排序

2.1.1.介绍

2.1.2 原理和步骤

2.1.3. python3 代码实现

  1 #!/usr/bin/env python
  2 #-*- coding:utf8 -*-
  3 def quick_sort(list):
  4 >---if len(list)<2:
  5 >--->---return list
  6 >---key=list[0]
  7 >---higher=[i for i in list[1:] if i>=key]
  8 >---lower=[i for i in list[1:] if i<key]
  9 >---print(list,end="")
 10 >---print(", ",key)
 11 >---return quick_sort(lower)+[key]+quick_sort(higher)
 12 #来吧,测试一下
 13 abc=[1,5,6,9,2,4,2,8,3,45,59,1,48,1,9,12]
 14 print(quick_sort(abc))

2.2 冒泡排序

2.2.1 介绍

2.2.2 原理和步骤

2.2.3 python3 代码实现

  1 #!/usr/bin/env python
  2 #-*- coding:utf8 -*-
  3 def bubble_sort(list):
  4 >---if len(list)<2:
  5 >--->---return list
  6 >---result=[]
  7 >---while len(list)>1:
  8 >--->---for i in range(len(list)-1):
  9 >--->--->---if list[i]>list[i+1]:
 10 >--->--->--->---list[i],list[i+1]=list[i+1],list[i]
 11 >--->---else:
 12 >--->--->---result=[list.pop()]+result
 13 >---result=list+result
 14 >---return result
 15
 16 abc=[32,34,5,43,23,6,23,12,5,6,4]
 17 print(bubble_sort(abc))
 

2.3 选择排序

2.3.1 介绍

2.3.2 原理和步骤

2.3.3 python3 代码实现

  1 #!/usr/bin/env python
  2 #-*- coding:utf8 -*-
  3 def select_sort(list):
  4 >---if len(list)<2:
  5 >--->---return list
  6 >---for i in range(len(list)-1):
  7 >--->---for j in range(i+1,len(list)):
  8 >--->--->---if list[i]>list[j]:
  9 >--->--->--->---list[i],list[j]=list[j],list[i]
 10 >---return list
 11
 12 abc=[5,6,9,2,8,3,56,5,6,26,2,69]
 13 print(select_sort(abc))

2.4 插入排序

2.4.1 介绍

2.4.2 原理和步骤

2.4.3 python3 代码实现


  1 #!/usr/bin/env python
  2 #-*- coding:utf8 -*-
  3 def insert_sort(list):
  4 >---if len(list)<2:
  5 >--->---return list
  6 >---result=[list[0]]
  7 >---for i in list[1:]:
  8 >--->---for j in range(len(result)-1,-1,-1):
  9 >--->--->---if i>=result[j]:
 10 >--->--->--->---result.insert(j+1,i)
 11 >--->--->--->---break
 12 >--->---else:
 13 >--->--->---result.insert(0,i)
 14 >---return result
 15
 16 abc=[454,48,2,4,5,48,1,6,46,19,88]
 17 print(insert_sort(abc))

上一篇下一篇

猜你喜欢

热点阅读