博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
冒泡排序
阅读量:5222 次
发布时间:2019-06-14

本文共 706 字,大约阅读时间需要 2 分钟。

 
  1. """
  2. 冒泡排序
  3. 把无序的数组按照从小到大的顺序进行排序
  4. 时间复杂度O(n2)
  5. """
  6. # 创建一个不规则数组
  7. import random
  8. arry = []
  9. # 循环20次
  10. for i in range(20):
  11. # 每次生成一个随机数
  12. arry.append(random.randrange(1000))
  13. # 冒泡排序
  14. def bubble_sort1(data):
  15. for i in range(len(data) - 1):
  16. for j in range(len(data) - 1 - i):
  17. if data[j] > data[j + 1]:
  18. data[j], data[j + 1] = data[j + 1], data[j]
  19. # 冒泡排序 如果没有交换那么排序已经完成。
  20. def bubble_sort2(data):
  21. for i in range(len(data) - 1):
  22. exchange = False
  23. for j in range(len(data) - 1 - i):
  24. if data[j] > data[j + 1]:
  25. data[j], data[j + 1] = data[j + 1], data[j]
  26. exchange = True
  27. if not exchange:
  28. break
  29. # 调用冒泡排序
  30. bubble_sort1(arry)
  31. print(arry)
  32. bubble_sort2(arry)
  33. print(arry)

转载于:https://www.cnblogs.com/mjxup/p/6eb90c468aa981e0210b5ea49495b252.html

你可能感兴趣的文章
mfc Edit控件属性
查看>>
[Linux]PHP-FPM与NGINX的两种通讯方式
查看>>
Java实现二分查找
查看>>
优秀员工一定要升职吗
查看>>
[LintCode] 462 Total Occurrence of Target
查看>>
springboot---redis缓存的使用
查看>>
架构图-模型
查看>>
sql常见面试题
查看>>
jQuery总结第一天
查看>>
Java -- Swing 组件使用
查看>>
Software--Architecture--DesignPattern IoC, Factory Method, Source Locator
查看>>
poj1936---subsequence(判断子串)
查看>>
黑马程序员_Java基础枚举类型
查看>>
[ python ] 练习作业 - 2
查看>>
一位90后程序员的自述:如何从年薪3w到30w!
查看>>
在.net core上使用Entity FramWork(Db first)
查看>>
System.Net.WebException: 无法显示错误消息,原因是无法找到包含此错误消息的可选资源程序集...
查看>>
UIImage 和 iOS 图片压缩UIImage / UIImageVIew
查看>>
MongoDB的数据库、集合的基本操作
查看>>
ajax向后台传递数组
查看>>