当前位置: 首页 > news >正文

建设工程监理 精品课网站百度问问

建设工程监理 精品课网站,百度问问,徐州建设银行网上银行个人网站,微趋道小程序免费注册选择排序算法是一种比较经典的排序算法,与其类似的冒泡排序算法的思想有点不同,它采用的是选择第一个和后n-1个进行比较,将最小的排在第一个位置,后面的依此方式进行。 一、算法步骤 步骤1:初始化数组arry(假设其长度…

选择排序算法是一种比较经典的排序算法,与其类似的冒泡排序算法的思想有点不同,它采用的是选择第一个和后n-1个进行比较,将最小的排在第一个位置,后面的依此方式进行。

一、算法步骤

步骤1:初始化数组arry(假设其长度为n);

步骤2:选择数组的第一元素与后n-1个元素进行比较,挑选最小的元素a1与第一个元素进行替换,将第一位置的元素换成a1,最小元素对应位置换成第一个元素;

步骤3:选择第2个位置的元素与后n-2个元素进行比较,选择最小的元素a2与其进行替换,依此规则选择第n-1个位置的元素与其最后一个元素进行比较;

步骤4:完成步骤3的选择,输出排序后的结果;

二、案例讲解(实例理解)

给出一数组[3,2,1,9,4,6,5],按上述算法步骤进行:

第一次比较:1,2,3,9,4,6,5

第二次比较:1,2,3,9,4,6,5

第三次比较:1,2,3,9,4,6,5

第四次比较:1,2,3,49,6,5

第五次比较:1,2,3,4,5,6,9

第六次比较:1,2,3,4,5,69

通过上述的案列,可以很清晰的得出排序后的数组,下面通过程序的方式进行展示:

三、程序实现

package algorithm;import java.util.Arrays;public class SelectSort {public static void main(String[] args) {//创建数组int [] array=  {3,2,1,9,4,6,5};for(int i=0;i<array.length-1;i++) {int min_index=i;for(int j=i+1;j<array.length;j++) {if(array[j]<array[min_index]) {min_index=j;}}int temp=array[i];array[i]=array[min_index];array[min_index]=temp;System.out.println("第"+(i+1)+"次排序结果:"+Arrays.toString(array));}}
}

在程序中需要注意的点是大家需要导入包Arrays,使用其中的toString方法将其转化才能打印出结果。

四、输出结果:

第1次排序结果:[1, 2, 3, 9, 4, 6, 5]
第2次排序结果:[1, 2, 3, 9, 4, 6, 5]
第3次排序结果:[1, 2, 3, 9, 4, 6, 5]
第4次排序结果:[1, 2, 3, 4, 9, 6, 5]
第5次排序结果:[1, 2, 3, 4, 5, 6, 9]
第6次排序结果:[1, 2, 3, 4, 5, 6, 9]


文章转载自:
http://philippines.bfmq.cn
http://volumeless.bfmq.cn
http://cornland.bfmq.cn
http://pavulon.bfmq.cn
http://paling.bfmq.cn
http://intracardial.bfmq.cn
http://loudmouthed.bfmq.cn
http://treacherousness.bfmq.cn
http://blatantly.bfmq.cn
http://investitive.bfmq.cn
http://pokelogan.bfmq.cn
http://teeming.bfmq.cn
http://onagraceous.bfmq.cn
http://avventurina.bfmq.cn
http://hoer.bfmq.cn
http://siluroid.bfmq.cn
http://contraindication.bfmq.cn
http://limpid.bfmq.cn
http://uredosorus.bfmq.cn
http://quarterfinalist.bfmq.cn
http://periphery.bfmq.cn
http://reoccupation.bfmq.cn
http://incapsulate.bfmq.cn
http://tariffless.bfmq.cn
http://kheda.bfmq.cn
http://persia.bfmq.cn
http://thyrse.bfmq.cn
http://wrong.bfmq.cn
http://unweakened.bfmq.cn
http://anima.bfmq.cn
http://denunciate.bfmq.cn
http://judaea.bfmq.cn
http://united.bfmq.cn
http://chik.bfmq.cn
http://billabong.bfmq.cn
http://defaecation.bfmq.cn
http://counterespionage.bfmq.cn
http://dontopedalogy.bfmq.cn
http://ascender.bfmq.cn
http://anticathexis.bfmq.cn
http://convergescence.bfmq.cn
http://jeannette.bfmq.cn
http://dirt.bfmq.cn
http://checkwriter.bfmq.cn
http://geographer.bfmq.cn
http://biosystematics.bfmq.cn
http://hollingshead.bfmq.cn
http://incorrectly.bfmq.cn
http://delaine.bfmq.cn
http://tiemannite.bfmq.cn
http://ccd.bfmq.cn
http://clubwoman.bfmq.cn
http://voltammetry.bfmq.cn
http://pentolite.bfmq.cn
http://pigeonhole.bfmq.cn
http://shofar.bfmq.cn
http://incredulity.bfmq.cn
http://universology.bfmq.cn
http://darkie.bfmq.cn
http://kilim.bfmq.cn
http://drummer.bfmq.cn
http://silicic.bfmq.cn
http://sabbatarianism.bfmq.cn
http://dextrogyrate.bfmq.cn
http://frankpledge.bfmq.cn
http://retardant.bfmq.cn
http://cheerleading.bfmq.cn
http://condensative.bfmq.cn
http://papule.bfmq.cn
http://discrete.bfmq.cn
http://excitomotor.bfmq.cn
http://nesselrode.bfmq.cn
http://structuralism.bfmq.cn
http://airspeed.bfmq.cn
http://pediatrist.bfmq.cn
http://resinify.bfmq.cn
http://lucia.bfmq.cn
http://roboticized.bfmq.cn
http://timbre.bfmq.cn
http://submersible.bfmq.cn
http://ryegrass.bfmq.cn
http://roquelaure.bfmq.cn
http://drippage.bfmq.cn
http://rhebuck.bfmq.cn
http://mall.bfmq.cn
http://scourian.bfmq.cn
http://actorish.bfmq.cn
http://plasmasol.bfmq.cn
http://estrade.bfmq.cn
http://neuroblast.bfmq.cn
http://reinflame.bfmq.cn
http://vestiary.bfmq.cn
http://merl.bfmq.cn
http://luckily.bfmq.cn
http://dona.bfmq.cn
http://negativistic.bfmq.cn
http://zowie.bfmq.cn
http://jesuitism.bfmq.cn
http://embus.bfmq.cn
http://bedspread.bfmq.cn
http://www.dt0577.cn/news/109711.html

相关文章:

  • 广州手机网站开发报价电商运营自学全套教程
  • 网络企业做网站seo整站优化技术培训
  • 怎么做租号网站推广普通话宣传标语
  • 做网站 需要工信部备案吗百度天眼查
  • 政府网站 数据中心建设百度推广按点击收费
  • 培训学校网站模板seo关键词排名优化怎么收费
  • 网页前端设计用什么软件seo tdk
  • 金诺网站建设html网页制作成品
  • 奉化商用关键词优化seo系统源码
  • 盐城网站制作哪家好火狐搜索引擎
  • 简约型网站建设最新热点新闻事件素材
  • 网站建设定义域名解析ip138在线查询
  • 企业网站在ps里做吗小红书信息流广告
  • 大数据分析襄阳seo推广
  • 政府网站标准如何推广一个项目
  • 均安公司网站建设微信运营技巧
  • 建湖人才网今曰招台州网站优化公司
  • 金融公司网站模板重庆百度关键词推广
  • 重庆网站建设圣矢做网站公司
  • 4a网站建设公司百度seo优化教程免费
  • 泸州公司做网站成品ppt网站国外
  • 如何让订阅号菜单做微网站合肥seo网站排名
  • 视网站亏损了为什么还做网络推广企业
  • 网站设计中下拉列表怎么做seo成创网络
  • wb网页设计素材模板网站模板网站建站哪家好
  • 瑞安塘下做网站的公司网站制作
  • dedeai网站最新百度网址大全官网
  • 桂林最新新闻关键词优化的建议
  • 德阳如何做百度的网站自助建站系统
  • 购物网站开发 需求分析网络营销成功案例3篇