web建站教程
  1. 首页
  2. vuejs
  3. js
  4. 好玩
  5. seo教程
  6. 前端知识
  7. 百度echarts
  8. 更多
    php入门
    nodejs
    mockjs
    reactjs
    mysql
    wordpress
    织梦cms
    帝国cms
    git教程
    IT知识
    模板大全
    休息站

如何利用Python代码实现基数排序算法

459 ℃
           

Python基数排序是一种非比较整数排序算法,其原理是将整数按位数切割成不同的数字,然后按每个位数分别比较。下面web建站小编给大家简单介绍一下具体代码!

Python代码实现基数排序算法

def countingSort(array, place):
  size = len(array)
  output = [0] * size
  count = [0] * 10
 
  for i in range(0, size):
    index = array[i] // place
    count[index % 10] += 1
 
  
  for i in range(1, 10):
    count[i] += count[i - 1]
 
  i = size - 1
  while i >= 0:
    index = array[i] // place
    output[count[index % 10] - 1] = array[i]
    count[index % 10] -= 1
    i -= 1
 
  for i in range(0, size):
    array[i] = output[i]
 
def radixSort(array):
  # Get maximum element
  max_element = max(array)
 
  place = 1
  while max_element // place > 0:
    countingSort(array, place)
    place *= 10
 
data = [121, 432, 564, 23, 1, 45, 788]
radixSort(data)
print(data)

python中pip出现"ParseException(s, l, str(ve))"的错误解决方法

标签: Python代码, Python算法

上面是“如何利用Python代码实现基数排序算法”的全面内容,想了解更多关于 前端知识 内容,请继续关注web建站教程。

当前网址:https://ipkd.cn/webs_14094.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

当前位置: 网站首页 > 前端知识
本文共计577个字,预计阅读时长4分钟
生活小工具,收录了80多款小工具
上一篇: 推荐一个可以查询老黄历的网站,可以根据五行取名!
下一篇: 详细介绍HTTP状态码不同之处的原因(什么原因导致的)
x 打工人ai神器