python选择排序算法实例总结


Posted in Python onJuly 01, 2015

本文实例总结了python选择排序算法。分享给大家供大家参考。具体如下:

代码1:

def ssort(V):
#V is the list to be sorted 
 j = 0
 #j is the "current" ordered position, starting with the first one in the list 
 while j != len(V):
 #this is the replacing that ends when it reaches the end of the list 
   for i in range(j, len(V)):
   #here it replaces the minor value that it finds with j position 
     if V[i] < V[j]:
     #but it does it for every value minor than position j 
       V[j],V[i] = V[i],V[j] 
   j = j+1
   #and here's the addiction that limits the verification to only the next values 
 return V

代码2:

def selection_sort(list): 
  l=list[:]
  # create a copy of the list 
  sorted=[]
  # this new list will hold the results 
  while len(l):
  # while there are elements to sort... 
    lowest=l[0]
    # create a variable to identify lowest 
    for x in l:
    # and check every item in the list... 
      if x<lowest:
      # to see if it might be lower. 
        lowest=x 
    sorted.append(lowest)
    # add the lowest one to the new list 
    l.remove(lowest)
    # and delete it from the old one 
  return sorted

代码3

a=input("Enter the length of the list :")
# too ask the user length of the list 
l=[]
# take a emty list 
for g in range (a):
# for append the values from user 
  b=input("Enter the element :")
  # to ask the user to give list values 
  l.append(b)
  # to append a values in a empty list l 
print "The given eliments list is",l 
for i in range (len(l)):
# to repeat the loop take length of l 
  index=i
  # to store the values i in string index 
  num=l[i]
  # to take first value in list and store in num 
  for j in range(i+1,len(l)):
  # to find out the small value in a list read all values 
    if num>l[j]:
    # to compare two values which store in num and list 
      index=j
      # to store the small value of the loop j in index 
      num=l[j]
      # to store small charecter are value in num 
  tem=l[i]
  # to swap the list take the temparary list stor list vlaues 
  l[i]=l[index]
  # to take first value as another 
  l[index]=tem 
print "After the swping the list by selection sort is",l

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
Python文件处理
Feb 29 Python
浅析python中的分片与截断序列
Aug 09 Python
Python实现注册登录系统
Aug 08 Python
Python实现求两个csv文件交集的方法
Sep 06 Python
Python安装与基本数据类型教程详解
May 29 Python
使用Python自动生成HTML的方法示例
Aug 06 Python
Python简易计算器制作方法代码详解
Oct 31 Python
详解Python的三种拷贝方式
Feb 11 Python
Python爬虫爬取、解析数据操作示例
Mar 27 Python
Django Channel实时推送与聊天的示例代码
Apr 30 Python
python IP地址转整数
Nov 20 Python
Appium+Python实现简单的自动化登录测试的实现
Jan 26 Python
python实现的希尔排序算法实例
Jul 01 #Python
python获取一组汉字拼音首字母的方法
Jul 01 #Python
python的keyword模块用法实例分析
Jun 30 #Python
Python实现监控程序执行时间并将其写入日志的方法
Jun 30 #Python
python实现爬取千万淘宝商品的方法
Jun 30 #Python
python简单判断序列是否为空的方法
Jun 30 #Python
python检查序列seq是否含有aset中项的方法
Jun 30 #Python
You might like
PHP结合Vue实现滚动底部加载效果
2017/12/17 PHP
PHP中in_array的隐式转换的解决方法
2018/03/06 PHP
php探针使用原理和技巧讲解
2019/09/17 PHP
phpstudy2020搭建站点的实现示例
2020/10/30 PHP
js获取变量
2006/08/24 Javascript
百度Popup.js弹出框进化版 拖拽小框架发布 兼容IE6/7/8,Firefox,Chrome
2010/04/13 Javascript
javascript修改表格背景色实例代码分享
2013/12/10 Javascript
js获取下拉列表的值和元素个数示例
2014/05/07 Javascript
js脚本实现数据去重
2014/11/27 Javascript
js读取csv文件并使用json显示出来
2015/01/09 Javascript
JavaScript生成验证码并实现验证功能
2016/09/24 Javascript
js面向对象编程总结
2017/02/16 Javascript
从零学习node.js之文件操作(三)
2017/02/21 Javascript
Textarea输入字数限制实例(兼容iOS&amp;安卓)
2017/07/06 Javascript
Bootstrap滚动监听组件scrollspy.js使用方法详解
2017/07/20 Javascript
Vue.js实现实例搜索应用功能详细代码
2017/08/24 Javascript
Angular2+如何去除url中的#号详解
2017/12/20 Javascript
微信小程序switch开关选择器使用详解
2018/01/31 Javascript
Vue 中使用vue2-highcharts实现曲线数据展示的方法
2018/03/05 Javascript
深入理解Vue.js轻量高效的前端组件化方案
2018/12/10 Javascript
d3绘制基本的柱形图的实现代码
2018/12/12 Javascript
推荐15个最好用的JavaScript代码压缩工具
2019/02/13 Javascript
layui数据表格实现重载数据表格功能(搜索功能)
2019/07/27 Javascript
浅谈Node新版本13.2.0正式支持ES Modules特性
2019/11/25 Javascript
解决vue-cli@3.xx安装不成功的问题及搭建ts-vue项目
2020/02/09 Javascript
javascript实现简易数码时钟
2020/03/30 Javascript
Python命名空间详解
2014/08/18 Python
浅谈Python Opencv中gamma变换的使用详解
2018/04/02 Python
在python下读取并展示raw格式的图片实例
2019/01/24 Python
python找出一个列表中相同元素的多个索引实例
2019/06/11 Python
CSS3圆角和渐变2种常用功能详解
2016/01/06 HTML / CSS
HTML5新增加的功能详解
2016/09/05 HTML / CSS
基于 HTML5 WebGL 实现的医疗物流系统
2019/10/08 HTML / CSS
物理研修随笔感言
2014/02/14 职场文书
先进个人主要事迹怎么写
2015/11/04 职场文书
JavaScript声明变量和数据类型的转换
2022/04/12 Javascript